Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Junczys-Dowmunt <marcinjd@microsoft.com>2018-12-10 00:44:04 +0300
committerMarcin Junczys-Dowmunt <marcinjd@microsoft.com>2018-12-10 00:44:04 +0300
commit8f04f9955ac39cd5ac4cb35d267ddc268afd60d8 (patch)
tree6b82d821fff497548836a25e23f4ab022e3b8d7e
parent96c9325b2f1675fd5f4367fc0e2970a0364b9c65 (diff)
disable warning for zlib
-rw-r--r--src/3rd_party/zlib/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rd_party/zlib/CMakeLists.txt b/src/3rd_party/zlib/CMakeLists.txt
index 1c84e8bd..c9584424 100644
--- a/src/3rd_party/zlib/CMakeLists.txt
+++ b/src/3rd_party/zlib/CMakeLists.txt
@@ -4,4 +4,4 @@ file(GLOB ZLIB_INC *.h)
# add sources of the wrapper as a "SQLiteCpp" static library
add_library(zlib OBJECT ${ZLIB_SRC} ${ZLIB_INC})
-
+target_compile_options(zlib PUBLIC -Wno-implicit-function-declaration)