
Partly revert the change from 35171b3c3f
.
It's not our place to patch sources that we import via git-subtree.
16 lines
325 B
Meson
16 lines
325 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')
|
|
|
|
subdir('src')
|