diff options
Diffstat (limited to 'src/n-dhcp4/meson.build')
| -rw-r--r-- | src/n-dhcp4/meson.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/n-dhcp4/meson.build b/src/n-dhcp4/meson.build new file mode 100644 index 00000000..8cdcb368 --- /dev/null +++ b/src/n-dhcp4/meson.build @@ -0,0 +1,23 @@ +project( + 'n-dhcp4', + 'c', + version: '1', + license: 'Apache', + default_options: [ + 'c_std=c11', + ], +) +project_description = 'Dynamic Host Configuration Protocol for IPv4' + +add_project_arguments('-D_GNU_SOURCE', language: 'c') +mod_pkgconfig = import('pkgconfig') + +sub_clist = subproject('c-list') +sub_csiphash = subproject('c-siphash') +sub_cstdaux = subproject('libcstdaux-1') + +dep_clist = sub_clist.get_variable('libclist_dep') +dep_csiphash = sub_csiphash.get_variable('libcsiphash_dep') +dep_cstdaux = sub_cstdaux.get_variable('libcstdaux_dep') + +subdir('src') |