mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "default",
|
|
"hidden": true,
|
|
"cacheVariables": {
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "YES",
|
|
"BUILD_EXAMPLES": "ON"
|
|
}
|
|
},
|
|
{
|
|
"name": "debug",
|
|
"inherits": "default",
|
|
"displayName": "Debug",
|
|
"description": "Debug build",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/debug",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "release",
|
|
"inherits": "default",
|
|
"displayName": "Release",
|
|
"description": "Release build",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/release",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "debug",
|
|
"configurePreset": "debug"
|
|
},
|
|
{
|
|
"name": "release",
|
|
"configurePreset": "release"
|
|
}
|
|
]
|
|
} |