diff options
author | Brad King <brad.king@kitware.com> | 2009-12-02 20:17:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-02 20:17:53 (GMT) |
commit | 4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa (patch) | |
tree | 3665c5144e0d62b4c9150064babc6bf322802447 /Modules/Platform/syllable.cmake | |
parent | 9daa4a6c3f3106adf02c9f8bc587fa8096a56b3b (diff) | |
download | CMake-4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa.zip CMake-4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa.tar.gz CMake-4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa.tar.bz2 |
Reduce duplication in Platform/<os>.cmake files
Several platform-wide linker flag variables are defined in
Modules/Platform/<os>.cmake files for C and then copied by the
Modules/CMake<lang>Information.cmake file for each language.
We now use this approach for the variables
CMAKE_EXE_EXPORTS_${lang}_FLAG
CMAKE_SHARED_LIBRARY_SONAME_${lang}_FLAG
CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS
to avoid duplication for multiple languages in each platform file.
Diffstat (limited to 'Modules/Platform/syllable.cmake')
-rw-r--r-- | Modules/Platform/syllable.cmake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/Platform/syllable.cmake b/Modules/Platform/syllable.cmake index 2bcaf8c..3ce42f6 100644 --- a/Modules/Platform/syllable.cmake +++ b/Modules/Platform/syllable.cmake @@ -14,9 +14,7 @@ SET(CMAKE_SHARED_LIBRARY_C_FLAGS "-fPIC") # -pic SET(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared") # -shared SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # +s, flag for exe link to use shared lib SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,") -SET(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "-Wl,-soname,") #SET(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic") -#SET(CMAKE_EXE_EXPORTS_CXX_FLAG "-Wl,--export-dynamic") # Initialize C link type selection flags. These flags are used when # building a shared library, shared module, or executable that links |