diff options
-rw-r--r-- | cmake/FindPCHSupport.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindPCHSupport.cmake b/cmake/FindPCHSupport.cmake index 0cb3af8c5f0..39a96b6cadb 100644 --- a/cmake/FindPCHSupport.cmake +++ b/cmake/FindPCHSupport.cmake @@ -47,7 +47,7 @@ MACRO(_PCH_GET_COMPILE_FLAGS _out_compile_flags) IF(CMAKE_COMPILER_IS_GNUCXX) GET_TARGET_PROPERTY(_targetType ${_PCH_current_target} TYPE) IF(${_targetType} STREQUAL SHARED_LIBRARY AND NOT WIN32) - LIST(APPEND ${_out_compile_flags} -fPIC") + LIST(APPEND ${_out_compile_flags} -fPIC) ENDIF() ELSE(CMAKE_COMPILER_IS_GNUCXX) |