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(...@@ -338,7 +338,7 @@ include_directories(
338)338)
339339
340if(MSVC)340if(MSVC)
341 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -W4")341 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
342elseif(MINGW)342elseif(MINGW)
343 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Werror -Wno-error=format= -Wno-error=format -Wno-error=format-extra-args")343 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Werror -Wno-error=format= -Wno-error=format -Wno-error=format-extra-args")
344else()344else()
README.md+1-1
...@@ -10,7 +10,7 @@ clarity....@@ -10,7 +10,7 @@ clarity.
10## Feature Highlights10## Feature Highlights
1111
12 * Small, simple language. Focus on debugging your application rather than12 * 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.
14 * Ships with a build system that obviates the need for a configure script14 * Ships with a build system that obviates the need for a configure script
15 or a makefile. In fact, existing C and C++ projects may choose to depend on15 or a makefile. In fact, existing C and C++ projects may choose to depend on
16 Zig instead of e.g. cmake.16 Zig instead of e.g. cmake.