Corrected an erro re-introduced at some point with the CMake config file and missing quotes.

Bug was reported by Orion Poplawski, thanks!
This commit is contained in:
Ward Fisher 2012-10-26 14:36:25 +00:00
parent 36ccdd3e67
commit 1609386670

View File

@ -23,7 +23,7 @@ SET (LIB_TYPE STATIC)
IF (BUILD_SHARED_LIBS)
SET(LIB_TYPE SHARED)
IF(CMAKE_COMPILER_IS_GNUCC)
SET(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} -fPIC)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
ENDIF()
ENDIF()
ADD_DEFINITIONS()