mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-02 10:00:13 +01:00
b46392d25d build: use c-stdaux 61f21750be build: pull in c-stdaux 31fcf75afe build: sync with c-util fec7b8f2da ci: add run with -DNDEBUG git-subtree-dir: shared/c-rbtree git-subtree-split: b46392d25de7a7bab67d48ef18bf8350b429cff5
19 lines
421 B
Meson
19 lines
421 B
Meson
project(
|
|
'c-rbtree',
|
|
'c',
|
|
version: '3',
|
|
license: 'Apache',
|
|
default_options: [
|
|
'c_std=c11'
|
|
],
|
|
)
|
|
project_description = 'Intrusive Red-Black Tree Collection'
|
|
|
|
add_project_arguments('-D_GNU_SOURCE', language: 'c')
|
|
mod_pkgconfig = import('pkgconfig')
|
|
|
|
sub_cstdaux = subproject('c-stdaux')
|
|
|
|
dep_cstdaux = sub_cstdaux.get_variable('libcstdaux_dep')
|
|
|
|
subdir('src')
|