diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2022-10-26 23:57:45 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2022-10-26 23:57:45 -0400 |
commit | 5baaec22352873767dbf253dc6deec4f55049886 (patch) | |
tree | 11ce974b1664be6cff5208da1fa91923bc7e4a24 /CMakeLists.txt | |
parent | f28f138c997a944c4144de10046f15191ecd88d9 (diff) | |
download | sayeth-wchar.tar.gz |
Wide character support -- from hellwchar
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
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) |