summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/XcodeSchemaProperty.cmake
Commit message (Collapse)AuthorAgeFilesLines
* 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`.
* Xcode: Add settings to control a scheme's GPU Validation valuesPatriceJiang2022-08-301-0/+2
|
* Xcode: Add Xcode SCHEME control for 'Launch' controlHarry Mallon2022-06-151-0/+2
|
* Tests: Xcode scheme ENABLE_GPU_FRAME_CAPTURE_MODEJake Turner2021-11-091-7/+13
| | | | | | | Setting numerical value Caseless comparison of string values "Metal" is converted to value 1 "Disabled" is converted to value 3
* Xcode: Add custom working directory propertyGregor Jasny2019-11-181-0/+1
| | | | Closes: #19967
* Xcode: Restore CMAKE_XCODE_GENERATE_SCHEME for custom targetsBrad King2019-10-021-0/+2
| | | | | | | | | The target property introduced by commit 413b71485a (Xcode: Create Xcode schemes per target, 2019-03-11, v3.15.0-rc1~347^2) was accidentally not initialized by `CMAKE_XCODE_GENERATE_SCHEME` for custom targets. Fix it and update the test. Fixes: #19759
* Xcode: Create Xcode schemes per targetHarry Mallon2019-03-211-0/+3
|
* Xcode: Add variables and properties to configure schemesGregor Jasny2018-08-011-0/+37
Add `XCODE_SCHEME_*` target properties and associated variables `CMAKE_XCODE_SCHEME_*` to initialize them on target creation. Map each target property value to an associated Xcode scheme entry. Co-Author: Martin Sander <mail@martin-sander.de> Fixes: #17919