Looks like building with -Werror in wsutil was forgotten with

cmake.

svn path=/trunk/; revision=50788
This commit is contained in:
Jörg Mayer 2013-07-22 14:43:17 +00:00
parent d5922fb41f
commit f833e8e59d
1 changed files with 12 additions and 0 deletions

View File

@ -63,6 +63,18 @@ set(wsutil_LIBS
${GLIB2_LIBRARIES}
)
set(CLEAN_FILES
${WSUTIL_FILES}
)
if (WERROR)
set_source_files_properties(
${CLEAN_FILES}
PROPERTIES
COMPILE_FLAGS -Werror
)
endif()
add_library(wsutil ${LINK_MODE_LIB}
${WSUTIL_FILES}
)