1# 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: '>=1.1.1',
20  default_options: [
21    'warning_level=3',
22    'werror=true',
23    'cpp_std=c++23',
24  ],
25)
26
27deps = [
28  dependency('sdeventplus'),
29  dependency('stdplus'),
30]
31
32libexecdir = get_option('prefix') / get_option('libexecdir')
33bindir = get_option('prefix') / get_option('bindir')
34
35fileio_lib = static_library(
36  'fileio',
37  [
38    'file-io.cpp',
39  ],
40  implicit_include_directories: false)
41
42executable(
43  'dhcp-done',
44  'dhcp-done.cpp',
45  implicit_include_directories: false,
46  dependencies: deps,
47  link_with : fileio_lib,
48  install: true,
49  install_dir: libexecdir)
50
51executable(
52  'update-dhcp-status',
53  'update-dhcp-status.cpp',
54  implicit_include_directories: false,
55  dependencies: deps,
56  link_with : fileio_lib,
57  install: true,
58  install_dir: bindir)
59
60systemd = dependency('systemd')
61systemunitdir = systemd.get_variable('systemdsystemunitdir')
62
63configure_file(
64  configuration: {'BIN': libexecdir / 'dhcp-done'},
65  input: 'dhcp-done.service.in',
66  output: 'dhcp-done.service',
67  install_mode: 'rw-r--r--',
68  install_dir: systemunitdir)
69
70build_tests = get_option('tests')
71
72#if not build_tests.disabled()
73subdir('test')
74#endif
75