commit | 3083053dd2b50c5c68587b57c730c0546eff4cd5 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 01 17:06:28 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 01 17:06:28 2015 +0200 |
tree | 7d046c35e869b3b05bb39ad85db65814787677cb | |
parent | 5fe51d75f028a36db724174c0b02f835d7428d0a [diff] |
More cmake for windows tune-ups
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 068d715..8023803 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt
@@ -33,6 +33,10 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function") endif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG) +if(MSVC) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /w") # no warnings here +endif(MSVC) + add_test_suite(aes aes.ecb) add_test_suite(aes aes.cbc) add_test_suite(aes aes.cfb)