commit a2db5facd322b7544d8cb87e4d2290bd45560c83
parent 492d943b7a22674a43fa509414648e8dd804d30a
Author: Frederic Cambus <fred@statdns.com>
Date: Tue, 19 Jun 2018 11:32:09 +0200
Do not use -Werror by default
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -30,7 +30,7 @@ if(NOT HAVE_STRTONUM)
set (SRC ${SRC} compat/strtonum.c)
endif()
-add_definitions(-Wall -Wextra -Werror -std=c99 -pedantic)
+add_definitions(-Wall -Wextra -std=c99 -pedantic)
add_executable(ansilove ${SRC} ${LOADERS})
target_link_libraries(ansilove ${GD_LIBRARIES} m)