123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- {
- "version": 4,
- "cmakeMinimumRequired": {
- "major": 3,
- "minor": 23,
- "patch": 0
- },
- "include": [
- "../Common/CMakePresets.json"
- ],
- "configurePresets": [
- {
- "name": "mac-default",
- "displayName": "Mac",
- "description": "Mac default configuration",
- "inherits": [
- "mac-xcode",
- "mac-unity",
- "mac-non-monolithic"
- ]
- },
- {
- "name": "mac-mono-default",
- "displayName": "Mac Monolithic with Unity and Xcode",
- "description": "Configures Mac to build the Monolithic permutation using Xcode with Unity builds",
- "binaryDir": "${sourceDir}/build/mac_mono",
- "inherits": [
- "mac-xcode",
- "mac-unity",
- "mac-monolithic"
- ]
- },
- {
- "name": "mac-unity",
- "displayName": "Mac Unity",
- "description": "Mac build which uses unity files",
- "binaryDir": "${sourceDir}/build/mac",
- "inherits": [
- "unity",
- "host-mac"
- ]
- },
- {
- "name": "mac-no-unity",
- "displayName": "Mac without Unity",
- "description": "Mac build which uses unity files",
- "binaryDir": "${sourceDir}/build/mac_no_unity",
- "inherits": [
- "no-unity",
- "host-mac"
- ]
- },
- {
- "name": "mac-non-monolithic",
- "displayName": "Mac Non-Monolithic",
- "description": "Default configuration for non-monolithic builds",
- "inherits": [
- "non-monolithic",
- "host-mac"
- ]
- },
- {
- "name": "mac-monolithic",
- "displayName": "Mac Monolithic",
- "description": "Default configuration for monolithic builds",
- "binaryDir": "${sourceDir}/build/mac_mono",
- "inherits": [
- "monolithic",
- "host-mac"
- ]
- },
- {
- "name": "mac-xcode",
- "displayName": "Mac Xcode",
- "description": "Configure Mac using with the Xcode generator",
- "binaryDir": "${sourceDir}/build/mac_xcode",
- "inherits":[
- "xcode"
- ]
- },
- {
- "name": "mac-xcode-unity",
- "displayName": "Mac Xcode Unity",
- "description": "Configure Mac with the Xcode generator + Unity Builds",
- "binaryDir": "${sourceDir}/build/mac_xcode_unity",
- "inherits": [
- "mac-unity",
- "xcode"
- ]
- },
- {
- "name": "mac-xcode-no-unity",
- "displayName": "Mac Xcode without Unity",
- "description": "Configure Mac with the Xcode Generator without unity builds",
- "binaryDir": "${sourceDir}/build/mac_xcode_no_unity",
- "inherits": [
- "mac-no-unity",
- "xcode"
- ]
- },
- {
- "name": "mac-ninja",
- "displayName": "Mac Ninja",
- "description": "Configure Mac using with the Ninja generator",
- "binaryDir": "${sourceDir}/build/mac_ninja",
- "inherits": [
- "mac-ninja-unity"
- ]
- },
- {
- "name": "mac-ninja-unity",
- "displayName": "Mac Ninja Unity",
- "description": "Configure Mac with the Ninja generator + Unity Builds",
- "binaryDir": "${sourceDir}/build/mac_ninja_unity",
- "inherits": [
- "ninja-multi-config",
- "mac-unity"
- ]
- },
- {
- "name": "mac-ninja-no-unity",
- "displayName": "Mac Ninja without Unity",
- "description": "Configure Mac with the Ninja Generator without unity builds",
- "binaryDir": "${sourceDir}/build/mac_ninja_no_unity",
- "inherits": [
- "ninja-multi-config",
- "mac-no-unity"
- ]
- }
- ],
- "buildPresets": [
- {
- "name": "mac-default",
- "displayName": "Mac",
- "description": "Builds all targets for Mac",
- "configurePreset": "mac-default",
- "inherits":[
- "host-mac"
- ]
- },
- {
- "name": "mac-install",
- "displayName": "Mac install",
- "description": "Builds the \"install\" target for Mac, which builds all target and runs the CMake --install step",
- "configurePreset": "mac-default",
- "inherits": [
- "install",
- "host-mac"
- ],
- "condition": {
- "type": "equals",
- "lhs": "${hostSystemName}",
- "rhs": "Darwin"
- }
- },
- {
- "name": "mac-mono-default",
- "displayName": "Mac Monolithic",
- "description": "Builds all targets for Mac in the monolithic permutation",
- "configurePreset": "mac-mono-default",
- "inherits":[
- "host-mac"
- ]
- },
- {
- "name": "mac-mono-install",
- "displayName": "Mac Monolithic install",
- "description": "Builds the \"install\" target for mac monolithic permutation, which builds all target and runs the CMake --install step",
- "configurePreset": "mac-mono-default",
- "inherits": [
- "install",
- "host-mac"
- ]
- },
- {
- "name": "mac-editor",
- "displayName": "Mac Editor",
- "description": "Builds the Editor application for Mac",
- "configurePreset": "mac-default",
- "inherits": [
- "editor",
- "host-mac"
- ]
- },
- {
- "name": "mac-assetprocessor",
- "displayName": "Mac AssetProcessor",
- "description": "Builds the AssetProcessor application for Mac",
- "configurePreset": "mac-default",
- "inherits": [
- "assetprocessor",
- "host-mac"
- ]
- },
- {
- "name": "mac-test",
- "displayName": "Mac CTest",
- "description": "Builds the TEST_SUITE_smoke/TEST_SUITE_main custom targets for Mac",
- "configurePreset": "mac-default",
- "inherits": [
- "test-default",
- "host-mac"
- ]
- }
- ],
- "testPresets": [
- {
- "name": "mac-test-default",
- "displayName": "Mac CTest",
- "description": "Runs the Smoke + Main Test Suite. Requires the mac-test build preset to have completed successfully",
- "configurePreset": "mac-default",
- "inherits": [
- "test-default",
- "host-mac"
- ]
- },
- {
- "name": "mac-test-debug",
- "displayName": "Mac CTest debug",
- "description": "Runs the Smoke + Main Test Suite in debug configuration. Requires the mac-test build preset to have completed successfully",
- "configurePreset": "mac-default",
- "inherits": [
- "test-default-debug",
- "host-mac"
- ]
- },
- {
- "name": "mac-test-profile",
- "displayName": "Mac CTest profile",
- "description": "Runs the Smoke + Main Test Suite in profile configuration. Requires the mac-test build preset to have completed successfully",
- "configurePreset": "mac-default",
- "inherits": [
- "test-default-profile",
- "host-mac"
- ]
- }
- ]
- }
|