
$ git subtree pull --prefix shared/c-list/ git@github.com:c-util/c-list.git master --squash Import commit 'dda36d30c7d655b4d61358519168fa7ce0e9dae9'.
16 lines
337 B
Meson
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')
|