From: Yann Collet Date: Sat, 4 Jun 2016 23:05:01 +0000 (+0200) Subject: fixed cmake project X-Git-Tag: v0.7.0^2~49^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3a1a84c9aebbcb13cdb592400fd06d7688381d3;p=thirdparty%2Fzstd.git fixed cmake project --- diff --git a/programs/zstdcli.c b/programs/zstdcli.c index 7c235c79e..75ce129fe 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -225,7 +225,8 @@ int main(int argCount, const char** argv) #endif /* init */ - (void)recursive; (void)cLevelLast; (void)dictCLevel; /* not used when ZSTD_NOBENCH / ZSTD_NODICT set */ + (void)recursive; (void)cLevelLast; /* not used when ZSTD_NOBENCH set */ + (void)dictCLevel; (void)dictSelect; (void)dictID; /* not used when ZSTD_NODICT set */ (void)decode; (void)cLevel; /* not used when ZSTD_NOCOMPRESS set */ if (filenameTable==NULL) { DISPLAY("not enough memory\n"); exit(1); } filenameTable[0] = stdinmark; diff --git a/projects/cmake/lib/CMakeLists.txt b/projects/cmake/lib/CMakeLists.txt index c9ec05fe9..3b988fd16 100644 --- a/projects/cmake/lib/CMakeLists.txt +++ b/projects/cmake/lib/CMakeLists.txt @@ -76,9 +76,7 @@ SET(Headers ${LIBRARY_DIR}/common/error_private.h ${LIBRARY_DIR}/common/error_public.h ${LIBRARY_DIR}/common/fse.h - ${LIBRARY_DIR}/common/fse_static.h ${LIBRARY_DIR}/common/huf.h - ${LIBRARY_DIR}/common/huf_static.h ${LIBRARY_DIR}/common/mem.h ${LIBRARY_DIR}/common/zbuff.h ${LIBRARY_DIR}/common/zstd_internal.h