From e98b0ce3bbc19c70876c595281a4a7253ad47c8b Mon Sep 17 00:00:00 2001 From: Boris Pek Date: Fri, 9 May 2014 19:52:30 +0400 Subject: [PATCH] Fix build with clang. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1fb764..5060fec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,7 +76,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()