summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlöen Lansfiel <kloen@outlawkiwi.com>2017-06-25 02:38:52 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-06-24 17:38:52 -0700
commitd1e414d813fcdb2dd564c057414d90684006cb61 (patch)
treedd21f38d2930b4686753f99c01293c1f18a2327c
parent6ba089fafbf6589fc34b1924e4d8a3c0103eeae7 (diff)
externals: silence warning C4390 on MSVC for cryptopp (#2805)
-rw-r--r--externals/cryptopp/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/externals/cryptopp/CMakeLists.txt b/externals/cryptopp/CMakeLists.txt
index 864de18bb..8a626e44a 100644
--- a/externals/cryptopp/CMakeLists.txt
+++ b/externals/cryptopp/CMakeLists.txt
@@ -44,6 +44,11 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "Intel")
add_definitions(-wd68 -wd186 -wd279 -wd327 -wd161 -wd3180)
endif()
+if(MSVC)
+ # Disable C4390: empty controlled statement found: is this the intent?
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4390")
+endif()
+
# Endianness
TEST_BIG_ENDIAN(IS_BIG_ENDIAN)
if(IS_BIG_ENDIAN)