summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/XcodeIOSInstallCombined.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Split some RunCMake.XcodeProject cases into a separate testBrad King2023-05-151-40/+0
| | | | | | The `RunCMake.XcodeProject` has many cases and occasionally fails due to timeout. Move iOS and other device-specific cases to a new `RunCMake.XcodeProject-Device` test.
* Tests/RunCMake: Update cmake_minimum_required versionsBrad King2023-02-111-3/+1
| | | | | | | | For policy-specific tests, use the version before the policy was introduced. Otherwise, use 3.5 where possible. Also, remove `cmake_minimum_required()` and `project()` calls from individual cases where they are handled by `CMakeLists.txt`.
* Tests: Update RunCMake.XcodeProject iOS cases for Xcode 14.0Brad King2022-09-301-2/+8
| | | | Issue: #24011
* Tests: Tell Xcode to disallow signing altogether in relevant casesBrad King2020-09-011-0/+1
| | | | | | | | The Xcode 'new build system' rejects empty signing identities unless signing is explicitly marked as not allowed. Update test cases where we turn off signing to explicitly disallow it too. Also turn off signing in the XCTest test.
* Xcode: Make iOS tests compatible with Xcode 11Gregor Jasny2019-08-261-0/+1
|
* iOS: Add IOS variableRuslan Baratov2019-03-051-0/+4
| | | | | | | Since commit 11da882a12 (Apple: Introduce separate system name for iOS, tvOS, and watchOS, 2018-01-15, v3.14.0-rc1~14^2~1) we support setting `CMAKE_SYSTEM_NAME` to `iOS`. Existing iOS toolchain files already set `IOS` as a short-hand variable, so do the same here.
* Apple: Introduce separate system name for iOS, tvOS, and watchOSGregor Jasny2019-02-041-3/+3
| | | | | | | | | | | - Remove code signing requirements for non-macOS - Do not set deployment target for non-macOS - Build static library for compiler feature detection for non-macOS - Use framework to run CompilerId tests for watchOS - Port tests to new SDK handling - Add new Apple cross-compiling section to toolchain documentation Closes: #17870
* Darwin: Emit deployment target that matches the SDKGregor Jasny2017-12-221-0/+3
| | | | Closes: #17431
* Revert "Xcode: Adjust tests to drop of 32bit iOS architectures"Gregor Jasny2017-10-101-5/+1
| | | | This reverts commit d210b2813072c874ee13fcc941e41aacacf09874.
* Xcode: Adjust tests to drop of 32bit iOS architecturesGregor Jasny2017-10-051-1/+5
|
* Xcode: Add support for combined install on iOSRuslan Baratov2015-12-101-0/+27
This patch solves the problem of installing both: Device and Simulator libraries on iOS. Before only one of them was installed. If the IOS_INSTALL_COMBINED property is set on a target, a special install hook will be activated which builds the corresponding target and combines both at the install location. The original patch was contributed by Ruslan Baratov, and polished by Gregor Jasny.