summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Darwin-XL-C.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-09-30 13:37:35 (GMT)
committerBrad King <brad.king@kitware.com>2009-09-30 13:37:35 (GMT)
commit6d434ee6ccc250bfc653281643d70a3d1f8938cc (patch)
tree0b402bdcd66ed738b2e9f60fdd7774eb57ccaeb1 /Modules/Platform/Darwin-XL-C.cmake
parentf40406ed6bbb47e2b68e20cb7dd623a7961b090b (diff)
downloadCMake-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-C.cmake')
-rw-r--r--Modules/Platform/Darwin-XL-C.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/Platform/Darwin-XL-C.cmake b/Modules/Platform/Darwin-XL-C.cmake
new file mode 100644
index 0000000..934ebcc
--- /dev/null
+++ b/Modules/Platform/Darwin-XL-C.cmake
@@ -0,0 +1,5 @@
+SET(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-qmkshrobj")
+SET(CMAKE_SHARED_MODULE_CREATE_C_FLAGS "-bundle")
+
+# Enable shared library versioning.
+SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-install_name")