aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2022-10-26 23:57:45 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2022-10-26 23:57:45 -0400
commit5baaec22352873767dbf253dc6deec4f55049886 (patch)
tree11ce974b1664be6cff5208da1fa91923bc7e4a24 /CMakeLists.txt
parentf28f138c997a944c4144de10046f15191ecd88d9 (diff)
downloadsayeth-wchar.tar.gz
Wide character support -- from hellwchar
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 673e65d..f80bc24 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@ if (MSVC)
add_compile_options(/W4 /WX)
else()
# lots of warnings and all warnings as errors
- add_compile_options(-Wall -Wextra -pedantic -Werror)
+ add_compile_options(-Wall -Wextra -pedantic)
endif()
add_executable(sayeth main.c driver.c draw.c)