From 9bfda64ef328b4586846276af3aa1d7699eec906 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sat, 9 Sep 2017 19:38:49 +0200 Subject: [PATCH] build: enable more msvc warnings --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 14bc90c..05416ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ if(WIN32) endif() if(MSVC) - add_compile_options(/Wall /wd4201 /wd4206 /wd4242 /wd4244 /wd4267 /wd4310 /wd4706 /wd4710 /wd4711 /wd4820 /wd4996) + add_compile_options(/Wall /wd4201 /wd4242 /wd4711 /wd4820) else() add_compile_options(-Wall) endif()