-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into github-actions-unittest
- Loading branch information
Showing
2 changed files
with
0 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,2 @@ | ||
set(IOS 1) | ||
set(CMAKE_SYSTEM_NAME tvOS) | ||
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # Required for libogg | ||
set(CMAKE_XCODE_ATTRIBUTE_ENABLE_BITCODE YES) | ||
set(CMAKE_XCODE_ATTRIBUTE_BITCODE_GENERATION_MODE "bitcode") | ||
|
||
### see https://github.com/cristeab/ios-cmake | ||
|
||
# Setup tvOS platform unless specified manually with IOS_PLATFORM | ||
if (NOT DEFINED IOS_PLATFORM) | ||
set (IOS_PLATFORM "OS") | ||
endif () | ||
set (IOS_PLATFORM ${IOS_PLATFORM} CACHE STRING "Type of tvOS Platform") | ||
|
||
# Check the platform selection and setup for developer root | ||
if (${IOS_PLATFORM} STREQUAL "OS") | ||
set (IOS_PLATFORM_LOCATION "AppleTVOS.platform") | ||
|
||
# This causes the installers to properly locate the output libraries | ||
set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-appletvos") | ||
elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR") | ||
set (IS_SIMULATOR true) | ||
set (IOS_PLATFORM_LOCATION "AppleTVSimulator.platform") | ||
|
||
# This causes the installers to properly locate the output libraries | ||
set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-appletvsimulator") | ||
else () | ||
message (FATAL_ERROR "Unsupported IOS_PLATFORM value selected. Please choose OS or SIMULATOR") | ||
endif () | ||
|
||
# Setup tvOS developer location unless specified manually with CMAKE_IOS_DEVELOPER_ROOT | ||
# Note Xcode 4.3 changed the installation location, choose the most recent one available | ||
exec_program(/usr/bin/xcode-select ARGS -print-path OUTPUT_VARIABLE CMAKE_XCODE_DEVELOPER_DIR) | ||
set (XCODE_POST_43_ROOT "${CMAKE_XCODE_DEVELOPER_DIR}/Platforms/${IOS_PLATFORM_LOCATION}/Developer") | ||
set (XCODE_PRE_43_ROOT "/Developer/Platforms/${IOS_PLATFORM_LOCATION}/Developer") | ||
if (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT) | ||
if (EXISTS ${XCODE_POST_43_ROOT}) | ||
set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_POST_43_ROOT}) | ||
elseif(EXISTS ${XCODE_PRE_43_ROOT}) | ||
set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_PRE_43_ROOT}) | ||
endif (EXISTS ${XCODE_POST_43_ROOT}) | ||
endif () | ||
set (CMAKE_IOS_DEVELOPER_ROOT ${CMAKE_IOS_DEVELOPER_ROOT} CACHE PATH "Location of tvOS Platform") | ||
|
||
# Find and use the most recent tvOS sdk unless specified manually with CMAKE_IOS_SDK_ROOT | ||
if (NOT DEFINED CMAKE_IOS_SDK_ROOT) | ||
file (GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*") | ||
if (_CMAKE_IOS_SDKS) | ||
list (SORT _CMAKE_IOS_SDKS) | ||
list (REVERSE _CMAKE_IOS_SDKS) | ||
list (GET _CMAKE_IOS_SDKS 0 CMAKE_IOS_SDK_ROOT) | ||
else (_CMAKE_IOS_SDKS) | ||
message (FATAL_ERROR "No tvOS SDK's found in default search path ${CMAKE_IOS_DEVELOPER_ROOT}. Manually set CMAKE_IOS_SDK_ROOT or install the tvOS SDK.") | ||
endif (_CMAKE_IOS_SDKS) | ||
message (STATUS "Toolchain using default tvOS SDK: ${CMAKE_IOS_SDK_ROOT}") | ||
endif () | ||
set (CMAKE_IOS_SDK_ROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Location of the selected tvOS SDK") | ||
|
||
# Set the sysroot default to the most recent SDK | ||
set (CMAKE_OSX_SYSROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Sysroot used for tvOS support") | ||
|
||
# set the architecture for tvOS | ||
if (${IOS_PLATFORM} STREQUAL "OS") | ||
set (IOS_ARCH armv7;armv7s;arm64) | ||
elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR") | ||
set (IOS_ARCH i386;x86_64) | ||
endif () |