Merge pull request #23 from tehnick/fix-clang

Fix build with Clang.
This commit is contained in:
Jan Vidar Krey 2014-05-12 00:01:50 +02:00
commit 60393ca9d0
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ set (adcclient_SOURCES
add_library(adc STATIC ${adc_SOURCES})
add_library(network STATIC ${network_SOURCES})
add_library(utils STATIC ${utils_SOURCES})
if(CMAKE_COMPILER_IS_GNUCC)
if ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
set_target_properties(utils PROPERTIES COMPILE_FLAGS -fPIC)
set_target_properties(network PROPERTIES COMPILE_FLAGS -fPIC)
endif()