mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-30 07:20:11 +01:00
git-subtree-dir: shared/c-siphash git-subtree-split: 24e301e32939be88744a9d0f81d18d9b7b8f4e37
14 lines
265 B
Meson
14 lines
265 B
Meson
project(
|
|
'c-siphash',
|
|
'c',
|
|
version: '1',
|
|
license: 'Apache',
|
|
default_options: [
|
|
'c_std=c11'
|
|
]
|
|
)
|
|
|
|
add_project_arguments('-D_GNU_SOURCE', language: 'c')
|
|
mod_pkgconfig = import('pkgconfig')
|
|
|
|
subdir('src')
|