summaryrefslogtreecommitdiff
path: root/shared/c-siphash/meson.build
blob: 2b07b019b34e3fedb8e7475e37b8f2bc89c8b204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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')