commit eeecf6af910091e12e7767eeb0161e1d7705eb4f
parent 741e4985cdd450ee41b148c004e3ead48913b356
Author: Frederic Cambus <fred@statdns.com>
Date: Tue, 19 Jun 2018 11:28:04 +0200
Do not use -Werror by default
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -29,7 +29,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_library(ansilove SHARED ${SRC} ${LOADERS})
target_link_libraries(ansilove ${GD_LIBRARIES} m)