summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-10-28 00:16:07 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-10-28 00:16:38 +0100
commit85aa5199d21d5b973c54672ee3e20a592f605d00 (patch)
tree1d8e2baac6062759ae91dc105d63cc16805aee4c /src
parent38f32789b1e1bb28271f08ac62d159815aa09608 (diff)
downloadlibuecc-85aa5199d21d5b973c54672ee3e20a592f605d00.tar
libuecc-85aa5199d21d5b973c54672ee3e20a592f605d00.zip
Add -Wall to COMPILE_FLAGS
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 8fbc018..96796ec 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -8,11 +8,13 @@ set_target_properties(uecc_shared PROPERTIES
OUTPUT_NAME uecc
SOVERSION ${UECC_ABI}
VERSION ${UECC_ABI}.${PROJECT_VERSION}
+ COMPILE_FLAGS -Wall
)
add_library(uecc_static STATIC ${UECC_SRC})
set_target_properties(uecc_static PROPERTIES
OUTPUT_NAME uecc
+ COMPILE_FLAGS -Wall
)
install(TARGETS uecc_shared uecc_static