commit c54eccb5111c25efcc164c2fc08af3e98c352fee
parent ebdca095a80a90424632ee15e8717fd1447a55e6
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Thu, 10 Dec 2015 19:10:58 +0100
Enabling the '-Werror' flag again now that we achieved a clean compile
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -15,7 +15,7 @@ if(NOT HAVE_STRTONUM)
set (SRC ${SRC} compat/strtonum.c)
endif()
-add_definitions(-Wall -Wextra -std=c99 -pedantic)
+add_definitions(-Wall -Wextra -Werror -std=c99 -pedantic)
add_executable(ansilove ${SRC})
target_link_libraries(ansilove ${LIB_GD} m)