open-story-teller/story-editor/CMakePresets.json
anthony@rabine.fr 157c5a5a01 usage of submodules instead of git fetch
multiple fixes/file moves
2025-01-28 22:31:05 +01:00

45 lines
1,019 B
JSON

{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 23,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Default configuration",
"description": "Default build using Ninja generator",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"environment": {
}
},
{
"name": "Configure-StoryEditor-Debug",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Configure-StoryEditor-Release",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "Build-StoryEditor-Debug",
"configurePreset": "Configure-StoryEditor-Debug"
},
{
"name": "Build-StoryEditor-Release",
"configurePreset": "Configure-StoryEditor-Release"
}
]
}