diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2015-11-11 04:37:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-11-23 15:04:10 (GMT) |
commit | 5d74c870d907eed9afc9c544e7e6786fd1ea53c8 (patch) | |
tree | 8d100076f15b2f656f0cc28a27d110bab00b9d22 /Help/manual/cmake-buildsystem.7.rst | |
parent | dbef2244f97e266896f71729d0de5eeb80c1c5f9 (diff) | |
download | CMake-5d74c870d907eed9afc9c544e7e6786fd1ea53c8.zip CMake-5d74c870d907eed9afc9c544e7e6786fd1ea53c8.tar.gz CMake-5d74c870d907eed9afc9c544e7e6786fd1ea53c8.tar.bz2 |
Help: Update documentation to reflect support for iOS
Many of our interfaces documented for OS X also work for iOS.
Diffstat (limited to 'Help/manual/cmake-buildsystem.7.rst')
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst index bc633e6..4a04f31 100644 --- a/Help/manual/cmake-buildsystem.7.rst +++ b/Help/manual/cmake-buildsystem.7.rst @@ -95,15 +95,18 @@ Apple Frameworks """""""""""""""" A ``SHARED`` library may be marked with the :prop_tgt:`FRAMEWORK` -target property to create an OS X Framework: +target property to create an OS X or iOS Framework Bundle. +The ``MACOSX_FRAMEWORK_IDENTIFIER`` sets ``CFBundleIdentifier`` key +and it uniquely identifies the bundle. .. code-block:: cmake add_library(MyFramework SHARED MyFramework.cpp) set_target_properties(MyFramework PROPERTIES - FRAMEWORK 1 + FRAMEWORK TRUE FRAMEWORK_VERSION A - ) + MACOSX_FRAMEWORK_IDENTIFIER org.cmake.MyFramework + ) .. _`Object Libraries`: |