commit | 92c52c37023cac984baffd936bc6d759baa1688d | [log] [tgz] |
---|---|---|
author | Pierre Ossman <ossman@cendio.se> | Thu Sep 22 16:23:32 2016 +0200 |
committer | Pierre Ossman <ossman@cendio.se> | Thu Sep 22 16:23:32 2016 +0200 |
tree | 459fd09e33261f121d19ea3245378aeeec481baf | |
parent | d959e7ac7471ae74fd9d2a60ed3f4fcd24ca624d [diff] [blame] |
Apply -fPIC on all compilers
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index e0431e6..e4489f6 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt
@@ -9,7 +9,7 @@ # because PIC code does not exist on that platform and MinGW complains if -fPIC # is passed (additionally, libvnc is not used on Windows.) -if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) +if(NOT WIN32) set_target_properties(os rdr network Xregion rfb PROPERTIES COMPILE_FLAGS -fPIC) endif()