mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-12 10:41:15 +00:00
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"version": 5,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 22,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "base",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"name": "release",
|
|
"inherits": ["base"],
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
},
|
|
{
|
|
"name": "debug",
|
|
"inherits": ["base"],
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
|
|
{
|
|
"name": "mingw64",
|
|
"inherits": ["release"],
|
|
"toolchainFile": "CMake/cmake-toolchain-mingw64-x86_64.cmake"
|
|
},
|
|
{
|
|
"name": "mingw64-debug",
|
|
"inherits": ["debug", "mingw64"]
|
|
},
|
|
|
|
{
|
|
"name": "vita",
|
|
"inherits": ["release"],
|
|
"toolchainFile": "$env{VITASDK}/share/vita.toolchain.cmake"
|
|
},
|
|
{
|
|
"name": "vita-debug",
|
|
"inherits": ["debug", "vita"]
|
|
}
|
|
]
|
|
} |