50 lines
853 B
JSON
50 lines
853 B
JSON
// Mainspring CMake presets
|
|
|
|
{
|
|
"version": 3,
|
|
|
|
"configurePresets": [
|
|
{
|
|
"name": "base",
|
|
"hidden": true,
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"architecture": {
|
|
"value": "x64",
|
|
"strategy": "external"
|
|
},
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "cl.exe",
|
|
"CMAKE_CXX_COMPILER": "cl.exe"
|
|
}
|
|
},
|
|
|
|
{
|
|
"name": "Debug",
|
|
"inherits": "base",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
|
|
{
|
|
"name": "Release",
|
|
"inherits": "base",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
}
|
|
],
|
|
|
|
"buildPresets": [
|
|
{
|
|
"name": "Debug",
|
|
"configurePreset": "Debug"
|
|
},
|
|
|
|
{
|
|
"name": "Release",
|
|
"configurePreset": "Release"
|
|
}
|
|
]
|
|
} |