diff options
Diffstat (limited to 'cmake')
| -rw-r--r-- | cmake/opentrack-platform.cmake | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/cmake/opentrack-platform.cmake b/cmake/opentrack-platform.cmake index 1141eac8..332fd51f 100644 --- a/cmake/opentrack-platform.cmake +++ b/cmake/opentrack-platform.cmake @@ -155,6 +155,13 @@ if(MINGW)      add_definitions(-DMINGW_HAS_SECURE_API)  endif() +# assume binutils +if(LINUX) +    foreach (i SHARED MODULE EXE) +        set(CMAKE_${i}_LINKER_FLAGS "${CMAKE_${i}_LINKER_FLAGS} -Wl,-z,relro,-z,now,--exclude-libs,ALL") +    endforeach() +endif() +  if(UNIX AND NOT APPLE)      include(opentrack-pkg-config)  endif() | 
