fixed compile warning on Mac 10.6 and below #4313

This commit is contained in:
Xinyu Hou 2015-02-10 17:48:30 +00:00
parent 4fcec1d217
commit 028757e4e0
1 changed files with 5 additions and 1 deletions

View File

@ -76,7 +76,11 @@ if (UNIX)
# warnings as errors:
# we have a problem with people checking in code with warnings.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror -fPIC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
if (NOT APPLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
endif()
# For config.h, detect the libraries, functions, etc.
include(CheckIncludeFiles)