Files
NetworkManager/shared/c-siphash/meson.build
Thomas Haller 6d513f4bf2 shared/c-siphash: reimport
git subtree pull --prefix shared/c-siphash git@github.com:c-util/c-siphash.git master --squash
2019-04-14 17:23:25 +02:00

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