
$ git subtree pull --prefix shared/c-siphash/ git@github.com:c-util/c-siphash.git master --squash Import commit '211cfc5abc3813cddd10d237ba9d843b8d3a8995'.
16 lines
331 B
Meson
16 lines
331 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')
|
|
|
|
subdir('src')
|