Browse Source

Apply -fPIC on all compilers

tags/v1.7.90
Pierre Ossman 7 years ago
parent
commit
92c52c3702
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      common/CMakeLists.txt

+ 1
- 1
common/CMakeLists.txt View File

@@ -9,7 +9,7 @@ add_subdirectory(rfb)
# 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()

Loading…
Cancel
Save