mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
45 lines
1,019 B
JSON
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"
|
|
}
|
|
]
|
|
}
|