From: Dmitry Belyavskiy Date: Sun, 3 May 2020 11:57:28 +0000 (+0300) Subject: No deprecation-related warnings X-Git-Tag: v3.0.0~179 X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=commitdiff_plain;h=ba42a84e46de8367030b0770b33b9db3f1e1b610;p=openssl-gost%2Fengine.git No deprecation-related warnings --- diff --git a/CMakeLists.txt b/CMakeLists.txt index b035b28..ada8842 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ include_directories(${OPENSSL_INCLUDE_DIR}) if (CMAKE_C_COMPILER_ID MATCHES "Clang") add_compile_options(-O2 -Werror -Wall -Wno-unused-parameter -Wno-unused-function -Wno-missing-braces -ggdb -Qunused-arguments) elseif(CMAKE_C_COMPILER_ID MATCHES "GNU") - add_compile_options(-O2 -Werror -Wall -Wno-unused-parameter -Wno-unused-function -Wno-missing-braces -ggdb -Wno-error=unknown-pragmas) + add_compile_options(-O2 -Werror -Wall -Wno-unused-parameter -Wno-unused-function -Wno-missing-braces -ggdb -Wno-error=unknown-pragmas -Wno-deprecated-declarations) elseif(CMAKE_C_COMPILER_ID MATCHES "MSVC") add_definitions(-D_CRT_SECURE_NO_WARNINGS) add_definitions(-D_CRT_DEPRECATED_NO_WARNINGS)