about summary refs log tree commit diff
path: root/CMake
diff options
context:
space:
mode:
authorLoo Rong Jie <loorongjie@gmail.com>2017-11-29T00·37+0800
committerLoo Rong Jie <loorongjie@gmail.com>2017-11-29T00·37+0800
commite98380282fdcd1573d478f380dafa08a15d2f9a5 (patch)
tree2b62c1629a0c3e636ac905ba7cbcc9ae71cf53c9 /CMake
parent79ae60ed9737f6c0ec652eab5492b1359aaea9cf (diff)
Add comments about warning flags
Diffstat (limited to 'CMake')
-rw-r--r--CMake/README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMake/README.md b/CMake/README.md
index 9c2d6897f8d8..0ae9c2686a88 100644
--- a/CMake/README.md
+++ b/CMake/README.md
@@ -44,6 +44,11 @@
       set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++ ${CMAKE_CXX_FLAGS}")
 
       if (MSVC)
+        # /wd4005  macro-redefinition
+        # /wd4068  unknown pragma
+        # /wd4244  conversion from 'type1' to 'type2'
+        # /wd4267  conversion from 'size_t' to 'type2'
+        # /wd4800  force value to bool 'true' or 'false' (performance warning)
         add_compile_options(/wd4005 /wd4068 /wd4244 /wd4267 /wd4800)
         add_definitions(/DNOMINMAX /DWIN32_LEAN_AND_MEAN=1 /D_CRT_SECURE_NO_WARNINGS)
       endif()