2021-12-16 19:29:48 +00:00
|
|
|
{
|
2024-12-04 22:38:05 +00:00
|
|
|
"version": 6,
|
|
|
|
"cmakeMinimumRequired": {
|
|
|
|
"major": 3,
|
|
|
|
"minor": 25,
|
|
|
|
"patch": 0
|
|
|
|
},
|
|
|
|
"configurePresets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"displayName": "Default configure step",
|
|
|
|
"description": "Use 'build' dir and Unix makefiles",
|
|
|
|
"binaryDir": "${sourceDir}/build",
|
|
|
|
"generator": "Unix Makefiles",
|
|
|
|
|
|
|
|
"hidden": true
|
2024-11-18 01:03:54 +00:00
|
|
|
},
|
2024-12-04 22:38:05 +00:00
|
|
|
{
|
|
|
|
"name": "windows-default",
|
|
|
|
"inherits": "default",
|
|
|
|
"displayName": "Windows Default Configure Settings",
|
|
|
|
"description": "Sets build and install directories",
|
|
|
|
"generator": "Visual Studio 17 2022",
|
|
|
|
"condition": {
|
|
|
|
"type": "equals",
|
|
|
|
"lhs": "${hostSystemName}",
|
|
|
|
"rhs": "Windows"
|
|
|
|
},
|
|
|
|
|
|
|
|
"hidden": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "windows-msvc",
|
|
|
|
"inherits": "windows-default",
|
|
|
|
"displayName": "Windows (MSVC)",
|
2024-12-05 19:45:21 +00:00
|
|
|
"description": "Create a build using MSVC"
|
2024-12-04 22:38:05 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "windows-clang",
|
|
|
|
"inherits": "windows-default",
|
|
|
|
"displayName": "EXPERIMENTAL - Windows (Clang)",
|
|
|
|
"description": "Create a build using Clang",
|
|
|
|
"toolset": "ClangCL"
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"name": "linux-default",
|
|
|
|
"inherits": "default",
|
|
|
|
"hidden": true,
|
|
|
|
"condition": {
|
|
|
|
"type": "equals",
|
|
|
|
"lhs": "${hostSystemName}",
|
|
|
|
"rhs": "Linux"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-clang",
|
|
|
|
"inherits": "linux-default",
|
|
|
|
|
|
|
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake",
|
|
|
|
|
|
|
|
"displayName": "Linux (Clang)",
|
2024-12-05 19:45:21 +00:00
|
|
|
"description": "Create a build using the Clang toolchain for Linux"
|
2024-12-04 22:38:05 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-gnu",
|
|
|
|
"inherits": "linux-default",
|
|
|
|
|
|
|
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake",
|
|
|
|
|
|
|
|
"displayName": "Linux (GNU)",
|
2024-12-05 19:45:21 +00:00
|
|
|
"description": "Create a build using the GNU toolchain for Linux"
|
2024-12-04 22:38:05 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "macos",
|
|
|
|
"inherits": "default",
|
|
|
|
"displayName": "MacOS",
|
|
|
|
"description": "Create a build for MacOS",
|
|
|
|
"condition": {
|
|
|
|
"type": "equals",
|
|
|
|
"lhs": "${hostSystemName}",
|
|
|
|
"rhs": "Darwin"
|
2024-12-05 19:45:21 +00:00
|
|
|
}
|
2024-12-04 22:38:05 +00:00
|
|
|
}
|
|
|
|
],
|
2024-12-08 20:31:27 +00:00
|
|
|
"buildPresets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"configurePreset": "default",
|
|
|
|
"displayName": "Default Build",
|
|
|
|
"description": "Default Build",
|
|
|
|
"jobs": 2
|
|
|
|
}
|
2024-12-04 22:38:05 +00:00
|
|
|
]
|
2024-11-18 01:03:54 +00:00
|
|
|
}
|