mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-02 21:40:13 +01:00
dda36d30c7 build: update build system git-subtree-dir: shared/c-list git-subtree-split: dda36d30c7d655b4d61358519168fa7ce0e9dae9
15 lines
337 B
Meson
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')
|