
Imported n-dhcp4 code with command: git subtree add --prefix shared/n-dhcp4/ git@github.com:nettools/n-dhcp4.git master --squash To update the library use: git subtree pull --prefix shared/n-dhcp4/ git@github.com:nettools/n-dhcp4.git master --squash
24 lines
613 B
Meson
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')
|