
5470816839 test: increase timeout on test-veth d44dfa1ba7 build: update c-stdaux 26b10b6514 build: pull in submodule updates 7817fc0a95 n-acd: switch to c-stdaux 5033b2ecdd n-acd: include dependency headers aaf2a66788 build: update README b9448eff98 build: pull in c-stdaux 8ac364e9a3 test: raise MEMLOCK if possible 3cd197162e ci: drop root 0289a33412 test: allow running without root 67a343fe87 build: update email address 3c364ba95f build: bump version d0f7d71fa1 build: document build configuration options 014b00cd27 build: fill in NEWS 180990288a n-acd: document API 79904585df build: update submodules 8185e6ed89 build: reduce boilerplate git-subtree-dir: shared/n-acd git-subtree-split: 54708168399f1662c652b5931608e5077ef462f6
28 lines
723 B
Meson
28 lines
723 B
Meson
project(
|
|
'n-acd',
|
|
'c',
|
|
version: '2',
|
|
license: 'Apache',
|
|
default_options: [
|
|
'c_std=c11',
|
|
],
|
|
)
|
|
project_description = 'IPv4 Address Conflict Detection'
|
|
|
|
add_project_arguments('-D_GNU_SOURCE', language: 'c')
|
|
mod_pkgconfig = import('pkgconfig')
|
|
|
|
sub_clist = subproject('c-list')
|
|
sub_crbtree = subproject('c-rbtree')
|
|
sub_csiphash = subproject('c-siphash')
|
|
sub_cstdaux = subproject('c-stdaux')
|
|
|
|
dep_clist = sub_clist.get_variable('libclist_dep')
|
|
dep_crbtree = sub_crbtree.get_variable('libcrbtree_dep')
|
|
dep_csiphash = sub_csiphash.get_variable('libcsiphash_dep')
|
|
dep_cstdaux = sub_cstdaux.get_variable('libcstdaux_dep')
|
|
|
|
use_ebpf = get_option('ebpf')
|
|
|
|
subdir('src')
|