Files
NetworkManager/shared/n-dhcp4/meson.build
Thomas Haller 65b6fc7871 nettools: reimport nettools' n-dhcp4 and rework logging
git subtree pull --prefix shared/n-dhcp4/ git@github.com:nettools/n-dhcp4.git master --squash
2020-06-03 22:34:22 +02:00

24 lines
613 B
Meson

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('c-stdaux')
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')