
Imported c-siphash code with command: git subtree add --prefix shared/c-siphash/ git@github.com:c-util/c-siphash.git master --squash To update the library use: git subtree pull --prefix shared/c-siphash/ git@github.com:c-util/c-siphash.git master --squash
15 lines
265 B
Meson
15 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')
|