Merge topic 'zlib-suppress-warnings'

74b8f786 zlib: Disable warnings to avoid changing 3rd party code
This commit is contained in:
Brad King 2015-01-15 09:54:06 -05:00 committed by CMake Topic Stage
commit 9cdc2f38ed
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,13 @@
PROJECT(CMZLIB)
# Disable warnings to avoid changing 3rd party code.
if(CMAKE_C_COMPILER_ID MATCHES
"^(GNU|Clang|AppleClang|XL|VisualAge|SunPro|MIPSpro|HP|Intel)$")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w")
elseif(CMAKE_C_COMPILER_ID STREQUAL "PathScale")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -woffall")
endif()
INCLUDE_DIRECTORIES(
"${CMZLIB_SOURCE_DIR}"
"${CMZLIB_SOURCE_DIR}/.."