]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
meson: fix build 1223/head
authorJon Turney <jon.turney@dronecode.org.uk>
Sun, 1 Jul 2018 21:41:08 +0000 (22:41 +0100)
committerJon Turney <jon.turney@dronecode.org.uk>
Mon, 2 Jul 2018 14:06:46 +0000 (15:06 +0100)
contrib/meson/meson.build

index 079c045a11740831483d6891215ff511c8ef8306..98c9b0293007146c094a3f8996e7abb780c6076b 100644 (file)
@@ -18,6 +18,7 @@ libzstd_srcs = [
     join_paths(common_dir, 'error_private.c'),
     join_paths(common_dir, 'xxhash.c'),
     join_paths(compress_dir, 'fse_compress.c'),
+    join_paths(compress_dir, 'hist.c'),
     join_paths(compress_dir, 'huf_compress.c'),
     join_paths(compress_dir, 'zstd_compress.c'),
     join_paths(compress_dir, 'zstd_fast.c'),
@@ -130,6 +131,7 @@ test('fuzzer', fuzzer)
 if target_machine.system() != 'windows'
     paramgrill = executable('paramgrill',
                             datagen_c, join_paths(tests_dir, 'paramgrill.c'),
+                            join_paths(programs_dir, 'bench.c'),
                             include_directories: test_includes,
                             link_with: libzstd,
                             dependencies: libm)