rizin/subprojects/xxhash/meson.build
2021-02-12 11:08:51 +08:00

16 lines
No EOL
410 B
Meson

project('xxhash', 'c',
# library files are BSD licensed. xxhsum utility is GPL licensed.
license : [ 'BSD', 'GPL'],
version : '0.6.5')
inc = include_directories('.')
libxxhash = library('xxhash',
['xxhash.c'],
include_directories : inc,
version : meson.project_version(),
install : false)
xxhash_dep = declare_dependency(
include_directories : inc,
link_with : libxxhash)