authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-30 13:59:47-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-30 14:00:27-04:00
log5c4504e00511280ae8bec1118908909fd062c29b
tree27dd178a9c9428900cef0e6d0eca567a057699a3
parent9c6e12ac2950264bc129fdd04d596ddbe22d8dc9

disable /W4 on MSVC


2 files changed, 2 insertions(+), 2 deletions(-)

CMakeLists.txt+1-1
......@@ -338,7 +338,7 @@ include_directories(
338338)
339339
340340if(MSVC)
341 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -W4")
341 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
342342elseif(MINGW)
343343 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Werror -Wno-error=format= -Wno-error=format -Wno-error=format-extra-args")
344344else()
README.md+1-1
......@@ -10,7 +10,7 @@ clarity.
1010## Feature Highlights
1111
1212 * Small, simple language. Focus on debugging your application rather than
13 debugging your knowledge of your programming language.
13 debugging knowledge of your programming language.
1414 * Ships with a build system that obviates the need for a configure script
1515 or a makefile. In fact, existing C and C++ projects may choose to depend on
1616 Zig instead of e.g. cmake.