diff options
author | Brad King <brad.king@kitware.com> | 2009-12-02 21:58:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-02 21:58:52 (GMT) |
commit | 3e37ca8ecc410154430be92e4616d76a011a3041 (patch) | |
tree | 7909e0907af7d7d5b3d4d5f72173244ca2e60870 /Modules/Platform/SunOS-GNU.cmake | |
parent | 22c37b2b199e99aa15b6a17e71dc8999a49ba624 (diff) | |
download | CMake-3e37ca8ecc410154430be92e4616d76a011a3041.zip CMake-3e37ca8ecc410154430be92e4616d76a011a3041.tar.gz CMake-3e37ca8ecc410154430be92e4616d76a011a3041.tar.bz2 |
Move GNU flags from SunOS.cmake to SunOS-GNU.cmake
The GNU-specific link-type flags do not belong in the platform-wide
file.
Diffstat (limited to 'Modules/Platform/SunOS-GNU.cmake')
-rw-r--r-- | Modules/Platform/SunOS-GNU.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/Platform/SunOS-GNU.cmake b/Modules/Platform/SunOS-GNU.cmake index c494a81..613ea6b 100644 --- a/Modules/Platform/SunOS-GNU.cmake +++ b/Modules/Platform/SunOS-GNU.cmake @@ -22,4 +22,13 @@ macro(__sunos_compiler_gnu lang) set(CMAKE_SHARED_LIBRARY_RUNTIME_${lang}_FLAG "-Wl,-R") set(CMAKE_SHARED_LIBRARY_RUNTIME_${lang}_FLAG_SEP ":") set(CMAKE_SHARED_LIBRARY_SONAME_${lang}_FLAG "-Wl,-h") + + # Initialize C link type selection flags. These flags are used when + # building a shared library, shared module, or executable that links + # to other libraries to select whether to use the static or shared + # versions of the libraries. + foreach(type SHARED_LIBRARY SHARED_MODULE EXE) + set(CMAKE_${type}_LINK_STATIC_${lang}_FLAGS "-Wl,-Bstatic") + set(CMAKE_${type}_LINK_DYNAMIC_${lang}_FLAGS "-Wl,-Bdynamic") + endforeach() endmacro() |