blob: cfb6b76a82eafff30111c38463faf64c12d68482 [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',
Patrick Williams1dfe24e2023-07-12 11:16:02 -050019 meson_version: '>=1.1.1',
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080020 default_options: [
21 'warning_level=3',
22 'werror=true',
Patrick Williams1dfe24e2023-07-12 11:16:02 -050023 'cpp_std=c++23',
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080024 ],
25)
26
27deps = [
28 dependency('sdeventplus'),
29 dependency('stdplus'),
30]
31
32libexecdir = get_option('prefix') / get_option('libexecdir')
Yuxiao Zhang1e760602024-03-07 12:35:24 -080033bindir = get_option('prefix') / get_option('bindir')
34
35fileio_lib = static_library(
36 'fileio',
37 [
38 'file-io.cpp',
39 ],
40 implicit_include_directories: false)
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080041
42executable(
43 'dhcp-done',
44 'dhcp-done.cpp',
45 implicit_include_directories: false,
46 dependencies: deps,
Yuxiao Zhang1e760602024-03-07 12:35:24 -080047 link_with : fileio_lib,
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080048 install: true,
49 install_dir: libexecdir)
50
Yuxiao Zhang1e760602024-03-07 12:35:24 -080051executable(
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
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080060systemd = dependency('systemd')
Patrick Williams4c4e94f2023-04-12 08:01:25 -050061systemunitdir = systemd.get_variable('systemdsystemunitdir')
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080062
63configure_file(
64 configuration: {'BIN': libexecdir / 'dhcp-done'},
Yuxiao Zhang1e760602024-03-07 12:35:24 -080065 input: 'dhcp-done.service.in',
66 output: 'dhcp-done.service',
William A. Kennington IIIdffd6522022-02-08 01:40:43 -080067 install_mode: 'rw-r--r--',
68 install_dir: systemunitdir)
Yuxiao Zhang1e760602024-03-07 12:35:24 -080069
70build_tests = get_option('tests')
71
Patrick Williamsa2d0c9e2025-01-30 17:48:13 -050072#if build_tests.allowed()
Yuxiao Zhang1e760602024-03-07 12:35:24 -080073subdir('test')
74#endif