NetworkManager/meson.build
Thomas Haller 085b4e0388 Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258
7c42c59258 build: use c-stdaux
d81d68ff83 build: sync with c-util
e858efbc45 build: pull in c-stdaux

git-subtree-dir: shared/c-siphash
git-subtree-split: 7c42c592581906fef19458372b8db2b643278211
2019-04-14 17:23:16 +02:00

19 lines
427 B
Meson

project(
'c-siphash',
'c',
version: '1',
license: 'Apache',
default_options: [
'c_std=c11'
],
)
project_description = 'Streaming-capable SipHash Implementation'
add_project_arguments('-D_GNU_SOURCE', language: 'c')
mod_pkgconfig = import('pkgconfig')
sub_cstdaux = subproject('c-stdaux')
dep_cstdaux = sub_cstdaux.get_variable('libcstdaux_dep')
subdir('src')