libzstd_dep = declare_dependency(link_with: libzstd,
include_directories: libzstd_includes)
-pkgconfig.generate(name: 'libzstd',
+pkgconfig.generate(libzstd,
+ name: 'libzstd',
filebase: 'libzstd',
- libraries: [libzstd],
description: 'fast lossless compression algorithm library',
version: zstd_libversion,
url: 'http://www.zstd.net/')
project('zstd',
['c', 'cpp'],
license: ['BSD', 'GPLv2'],
- default_options : ['c_std=c99',
+ default_options : [
+ 'c_std=c99',
'cpp_std=c++11',
- 'buildtype=release'],
+ 'buildtype=release'
+ ],
version: '1.3.8',
meson_version: '>=0.47.0')