blob: a72690b1a9556bf1f651b31fdf4fcf6c7a9d0c54 [file] [log] [blame]
William A. Kennington IIIdffd6522022-02-08 01:40:43 -08001# Copyright 2022 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15project(
16 'dhcp-done',
17 'cpp',
18 version: '0.1',
19 meson_version: '>=0.57.0',
20 default_options: [
21 'warning_level=3',
22 'werror=true',
23 'cpp_std=c++20',
24 ],
25)
26
27deps = [
28 dependency('sdeventplus'),
29 dependency('stdplus'),
30]
31
32libexecdir = get_option('prefix') / get_option('libexecdir')
33
34executable(
35 'dhcp-done',
36 'dhcp-done.cpp',
37 implicit_include_directories: false,
38 dependencies: deps,
39 install: true,
40 install_dir: libexecdir)
41
42systemd = dependency('systemd')
43systemunitdir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
44
45configure_file(
46 configuration: {'BIN': libexecdir / 'dhcp-done'},
47 input: 'dhcp-done.service.in',
48 output: 'dhcp-done.service',
49 install_mode: 'rw-r--r--',
50 install_dir: systemunitdir)