Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,6 @@ tests/*/project/proj.android/.settings/org.eclipse.buildship.core.prefs
# tmp folder for temp usage
tmp/
temp/

# external libs zip
*.zip
5 changes: 3 additions & 2 deletions cmake/ios.toolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ set(UNIX True)
set(APPLE True)
set(IOS True)

# Required as of cmake 2.8.10
set(CMAKE_OSX_DEPLOYMENT_TARGET "" CACHE STRING "Force unset of the deployment target for iOS" FORCE)
# support iOS on cmake 3.11+
# cmake 3.11 milestone feature, https://gitlab.kitware.com/cmake/cmake/issues/17431
set(CMAKE_OSX_DEPLOYMENT_TARGET "8.0" CACHE STRING "set of the deployment target for iOS" FORCE)

# Determine the cmake host system version so we know where to find the iOS SDKs
find_program(CMAKE_UNAME uname /bin /usr/bin /usr/local/bin)
Expand Down