NetworkManager/meson.build
Thomas Haller cd9f57a164 Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7
dda36d30c7 build: update build system

git-subtree-dir: shared/c-list
git-subtree-split: dda36d30c7d655b4d61358519168fa7ce0e9dae9
2019-02-06 07:53:13 +01:00

15 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')