Skip to content

Commit b8c33c5

Browse files
committed
cmake: added iOS toolchain
1 parent 5319e3a commit b8c33c5

File tree

1 file changed

+190
-0
lines changed

1 file changed

+190
-0
lines changed

cmake/iOSToolchain.cmake

+190
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
# This file is based off of the Platform/Darwin.cmake and Platform/UnixPaths.cmake
2+
# files which are included with CMake 2.8.4
3+
# It has been altered for iOS development
4+
5+
# Options:
6+
#
7+
# IOS_PLATFORM = OS (default) or SIMULATOR
8+
# This decides if SDKS will be selected from the iPhoneOS.platform or iPhoneSimulator.platform folders
9+
# OS - the default, used to build for iPhone and iPad physical devices, which have an arm arch.
10+
# SIMULATOR - used to build for the Simulator platforms, which have an x86 arch.
11+
#
12+
# CMAKE_IOS_DEVELOPER_ROOT = automatic(default) or /path/to/platform/Developer folder
13+
# By default this location is automatcially chosen based on the IOS_PLATFORM value above.
14+
# If set manually, it will override the default location and force the user of a particular Developer Platform
15+
#
16+
# CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder
17+
# By default this location is automatcially chosen based on the CMAKE_IOS_DEVELOPER_ROOT value.
18+
# In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path.
19+
# If set manually, this will force the use of a specific SDK version
20+
21+
# Macros:
22+
#
23+
# set_xcode_property (TARGET XCODE_PROPERTY XCODE_VALUE)
24+
# A convenience macro for setting xcode specific properties on targets
25+
# example: set_xcode_property (myioslib IPHONEOS_DEPLOYMENT_TARGET "3.1")
26+
#
27+
# find_host_package (PROGRAM ARGS)
28+
# A macro used to find executable programs on the host system, not within the iOS environment.
29+
# Thanks to the android-cmake project for providing the command
30+
31+
32+
# Standard settings
33+
set (CMAKE_SYSTEM_NAME Darwin)
34+
set (CMAKE_SYSTEM_VERSION 1)
35+
set (UNIX True)
36+
set (APPLE True)
37+
set (IOS True)
38+
39+
# Determine the cmake host system version so we know where to find the iOS SDKs
40+
find_program (CMAKE_UNAME uname /bin /usr/bin /usr/local/bin)
41+
if (CMAKE_UNAME)
42+
exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION)
43+
string (REGEX REPLACE "^([0-9]+)\\.([0-9]+).*$" "\\1" DARWIN_MAJOR_VERSION "${CMAKE_HOST_SYSTEM_VERSION}")
44+
endif (CMAKE_UNAME)
45+
46+
# Force the compilers to gcc for iOS
47+
include (CMakeForceCompiler)
48+
CMAKE_FORCE_C_COMPILER (gcc gcc)
49+
CMAKE_FORCE_CXX_COMPILER (g++ g++)
50+
51+
# Skip the platform compiler checks for cross compiling
52+
set (CMAKE_CXX_COMPILER_WORKS TRUE)
53+
set (CMAKE_C_COMPILER_WORKS TRUE)
54+
55+
# All iOS/Darwin specific settings - some may be redundant
56+
set (CMAKE_SHARED_LIBRARY_PREFIX "lib")
57+
set (CMAKE_SHARED_LIBRARY_SUFFIX ".dylib")
58+
set (CMAKE_SHARED_MODULE_PREFIX "lib")
59+
set (CMAKE_SHARED_MODULE_SUFFIX ".so")
60+
set (CMAKE_MODULE_EXISTS 1)
61+
set (CMAKE_DL_LIBS "")
62+
63+
set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ")
64+
set (CMAKE_C_OSX_CURRENT_VERSION_FLAG "-current_version ")
65+
set (CMAKE_CXX_OSX_COMPATIBILITY_VERSION_FLAG "${CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG}")
66+
set (CMAKE_CXX_OSX_CURRENT_VERSION_FLAG "${CMAKE_C_OSX_CURRENT_VERSION_FLAG}")
67+
68+
# Hidden visibilty is required for cxx on iOS
69+
set (CMAKE_C_FLAGS_INIT "")
70+
set (CMAKE_CXX_FLAGS_INIT "-headerpad_max_install_names -fvisibility=hidden -fvisibility-inlines-hidden")
71+
72+
set (CMAKE_C_LINK_FLAGS "-Wl,-search_paths_first ${CMAKE_C_LINK_FLAGS}")
73+
set (CMAKE_CXX_LINK_FLAGS "-Wl,-search_paths_first ${CMAKE_CXX_LINK_FLAGS}")
74+
75+
set (CMAKE_PLATFORM_HAS_INSTALLNAME 1)
76+
set (CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-dynamiclib -headerpad_max_install_names")
77+
set (CMAKE_SHARED_MODULE_CREATE_C_FLAGS "-bundle -headerpad_max_install_names")
78+
set (CMAKE_SHARED_MODULE_LOADER_C_FLAG "-Wl,-bundle_loader,")
79+
set (CMAKE_SHARED_MODULE_LOADER_CXX_FLAG "-Wl,-bundle_loader,")
80+
set (CMAKE_FIND_LIBRARY_SUFFIXES ".dylib" ".so" ".a")
81+
82+
# hack: if a new cmake (which uses CMAKE_INSTALL_NAME_TOOL) runs on an old build tree
83+
# (where install_name_tool was hardcoded) and where CMAKE_INSTALL_NAME_TOOL isn't in the cache
84+
# and still cmake didn't fail in CMakeFindBinUtils.cmake (because it isn't rerun)
85+
# hardcode CMAKE_INSTALL_NAME_TOOL here to install_name_tool, so it behaves as it did before, Alex
86+
if (NOT DEFINED CMAKE_INSTALL_NAME_TOOL)
87+
find_program(CMAKE_INSTALL_NAME_TOOL install_name_tool)
88+
endif (NOT DEFINED CMAKE_INSTALL_NAME_TOOL)
89+
90+
# Setup iOS platform unless specified manually with IOS_PLATFORM
91+
if (NOT DEFINED IOS_PLATFORM)
92+
set (IOS_PLATFORM "OS")
93+
endif (NOT DEFINED IOS_PLATFORM)
94+
set (IOS_PLATFORM ${IOS_PLATFORM} CACHE STRING "Type of iOS Platform")
95+
96+
# Check the platform selection and setup for developer root
97+
if (${IOS_PLATFORM} STREQUAL "OS")
98+
set (IOS_PLATFORM_LOCATION "iPhoneOS.platform")
99+
100+
# This causes the installers to properly locate the output libraries
101+
set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphoneos")
102+
elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR")
103+
set (IOS_PLATFORM_LOCATION "iPhoneSimulator.platform")
104+
105+
# This causes the installers to properly locate the output libraries
106+
set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphonesimulator")
107+
else (${IOS_PLATFORM} STREQUAL "OS")
108+
message (FATAL_ERROR "Unsupported IOS_PLATFORM value selected. Please choose OS or SIMULATOR")
109+
endif (${IOS_PLATFORM} STREQUAL "OS")
110+
111+
# Setup iOS developer location unless specified manually with CMAKE_IOS_DEVELOPER_ROOT
112+
# Note Xcode 4.3 changed the installation location, choose the most recent one available
113+
set (XCODE_POST_43_ROOT "/Applications/Xcode.app/Contents/Developer/Platforms/${IOS_PLATFORM_LOCATION}/Developer")
114+
set (XCODE_PRE_43_ROOT "/Developer/Platforms/${IOS_PLATFORM_LOCATION}/Developer")
115+
if (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT)
116+
if (EXISTS ${XCODE_POST_43_ROOT})
117+
set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_POST_43_ROOT})
118+
elseif(EXISTS ${XCODE_PRE_43_ROOT})
119+
set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_PRE_43_ROOT})
120+
endif (EXISTS ${XCODE_POST_43_ROOT})
121+
endif (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT)
122+
set (CMAKE_IOS_DEVELOPER_ROOT ${CMAKE_IOS_DEVELOPER_ROOT} CACHE PATH "Location of iOS Platform")
123+
124+
# Find and use the most recent iOS sdk unless specified manually with CMAKE_IOS_SDK_ROOT
125+
if (NOT DEFINED CMAKE_IOS_SDK_ROOT)
126+
file (GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*")
127+
if (_CMAKE_IOS_SDKS)
128+
list (SORT _CMAKE_IOS_SDKS)
129+
list (REVERSE _CMAKE_IOS_SDKS)
130+
list (GET _CMAKE_IOS_SDKS 0 CMAKE_IOS_SDK_ROOT)
131+
else (_CMAKE_IOS_SDKS)
132+
message (FATAL_ERROR "No iOS SDK's found in default seach path ${CMAKE_IOS_DEVELOPER_ROOT}. Manually set CMAKE_IOS_SDK_ROOT or install the iOS SDK.")
133+
endif (_CMAKE_IOS_SDKS)
134+
message (STATUS "Toolchain using default iOS SDK: ${CMAKE_IOS_SDK_ROOT}")
135+
endif (NOT DEFINED CMAKE_IOS_SDK_ROOT)
136+
set (CMAKE_IOS_SDK_ROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Location of the selected iOS SDK")
137+
138+
# Set the sysroot default to the most recent SDK
139+
set (CMAKE_OSX_SYSROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Sysroot used for iOS support")
140+
141+
# set the architecture for iOS
142+
# NOTE: Currently both ARCHS_STANDARD_32_BIT and ARCHS_UNIVERSAL_IPHONE_OS set armv7 only, so set both manually
143+
if (${IOS_PLATFORM} STREQUAL "OS")
144+
set (IOS_ARCH armv6 armv7)
145+
else (${IOS_PLATFORM} STREQUAL "OS")
146+
set (IOS_ARCH i386)
147+
endif (${IOS_PLATFORM} STREQUAL "OS")
148+
149+
set (CMAKE_OSX_ARCHITECTURES ${IOS_ARCH} CACHE string "Build architecture for iOS")
150+
151+
# Set the find root to the iOS developer roots and to user defined paths
152+
set (CMAKE_FIND_ROOT_PATH ${CMAKE_IOS_DEVELOPER_ROOT} ${CMAKE_IOS_SDK_ROOT} ${CMAKE_PREFIX_PATH} CACHE string "iOS find search path root")
153+
154+
# default to searching for frameworks first
155+
set (CMAKE_FIND_FRAMEWORK FIRST)
156+
157+
# set up the default search directories for frameworks
158+
set (CMAKE_SYSTEM_FRAMEWORK_PATH
159+
${CMAKE_IOS_SDK_ROOT}/System/Library/Frameworks
160+
${CMAKE_IOS_SDK_ROOT}/System/Library/PrivateFrameworks
161+
${CMAKE_IOS_SDK_ROOT}/Developer/Library/Frameworks
162+
)
163+
164+
# only search the iOS sdks, not the remainder of the host filesystem
165+
set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY)
166+
set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
167+
set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
168+
169+
170+
# This little macro lets you set any XCode specific property
171+
macro (set_xcode_property TARGET XCODE_PROPERTY XCODE_VALUE)
172+
set_property (TARGET ${TARGET} PROPERTY XCODE_ATTRIBUTE_${XCODE_PROPERTY} ${XCODE_VALUE})
173+
endmacro (set_xcode_property)
174+
175+
176+
# This macro lets you find executable programs on the host system
177+
macro (find_host_package)
178+
set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
179+
set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER)
180+
set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER)
181+
set (IOS FALSE)
182+
183+
find_package(${ARGN})
184+
185+
set (IOS TRUE)
186+
set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY)
187+
set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
188+
set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
189+
endmacro (find_host_package)
190+

0 commit comments

Comments
 (0)