add missing generator to CMakePresets
This commit is contained in:
parent
08791f496d
commit
f90c684471
1 changed files with 8 additions and 2 deletions
|
@ -11,6 +11,7 @@
|
||||||
"displayName": "Linux clang",
|
"displayName": "Linux clang",
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||||
|
"generator": "Ninja",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_C_COMPILER": "clang",
|
"CMAKE_C_COMPILER": "clang",
|
||||||
"CMAKE_CXX_COMPILER": "clang++",
|
"CMAKE_CXX_COMPILER": "clang++",
|
||||||
|
@ -43,6 +44,7 @@
|
||||||
"displayName": "Linux gcc",
|
"displayName": "Linux gcc",
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||||
|
"generator": "Ninja",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_C_COMPILER": "gcc",
|
"CMAKE_C_COMPILER": "gcc",
|
||||||
"CMAKE_CXX_COMPILER": "g++"
|
"CMAKE_CXX_COMPILER": "g++"
|
||||||
|
@ -115,8 +117,12 @@
|
||||||
],
|
],
|
||||||
"buildPresets": [
|
"buildPresets": [
|
||||||
{
|
{
|
||||||
"name": "default",
|
"name": "windows-default",
|
||||||
"configurePreset": "default"
|
"configurePreset": "windows-default-debug"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-default",
|
||||||
|
"configurePreset": "linux-clang-debug"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue