Files
NetworkManager/shared/c-list/meson.build
Thomas Haller 70c71151c6 shared/c-list: reimport
git subtree pull --prefix shared/c-list git@github.com:c-util/c-list.git master --squash
2020-06-03 22:00:56 +02:00

16 lines
337 B
Meson

project(
'c-list',
'c',
version: '3',
license: 'Apache',
default_options: [
'c_std=c11',
],
)
project_description = 'Circular Intrusive Double Linked List Collection'
add_project_arguments('-D_GNU_SOURCE', language: 'c')
mod_pkgconfig = import('pkgconfig')
subdir('src')