diff options
author | Brad King <brad.king@kitware.com> | 2009-09-30 13:37:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-30 13:37:35 (GMT) |
commit | 6d434ee6ccc250bfc653281643d70a3d1f8938cc (patch) | |
tree | 0b402bdcd66ed738b2e9f60fdd7774eb57ccaeb1 /Modules/Platform/Darwin-XL-CXX.cmake | |
parent | f40406ed6bbb47e2b68e20cb7dd623a7961b090b (diff) | |
download | CMake-6d434ee6ccc250bfc653281643d70a3d1f8938cc.zip CMake-6d434ee6ccc250bfc653281643d70a3d1f8938cc.tar.gz CMake-6d434ee6ccc250bfc653281643d70a3d1f8938cc.tar.bz2 |
Split XL compiler information files
This moves platform-independent XL compiler flags into separate
"Compiler/XL-<lang>.cmake" modules. Platform-specific flags go in
"Platform/<os>-XL-<lang>.cmake" modules.
Diffstat (limited to 'Modules/Platform/Darwin-XL-CXX.cmake')
-rw-r--r-- | Modules/Platform/Darwin-XL-CXX.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/Platform/Darwin-XL-CXX.cmake b/Modules/Platform/Darwin-XL-CXX.cmake new file mode 100644 index 0000000..22ae018 --- /dev/null +++ b/Modules/Platform/Darwin-XL-CXX.cmake @@ -0,0 +1,5 @@ +SET(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "-qmkshrobj") +SET(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS "-bundle") + +# Enable shared library versioning. +SET(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "-Wl,-install_name") |