Files
Convention-Unity-Demo/Assets/StreamingAssets/CMakePresets.json

56 lines
1.2 KiB
JSON
Raw Normal View History

2025-09-25 19:04:05 +08:00
{
"version": 3,
"configurePresets": [
{
"name": "virtual-base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "E:\\Downloads\\.build",
"installDir": "E:\\Downloads\\.install",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"PLATFORM_EXTENSION": "no"
}
},
{
"name": "virtual-debug",
"hidden": true,
"cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" }
},
{
"name": "virtual-windows",
"hidden": true,
"cacheVariables": {
"PLATFORM_NAME": "Windows",
"CMAKE_C_COMPILER": "cl.exe",
"CMAKE_CXX_COMPILER": "cl.exe"
},
"condition": {
"type": "equals",
"lhs": "Windows",
"rhs": "Windows"
}
},
{
"name": "virtual-x64",
"hidden": true,
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"PLATFORM_VERSION": "x64"
}
},
{
"name": "windows-x64-debug",
"inherits": [
"virtual-base",
"virtual-windows",
"virtual-x64",
"virtual-debug"
]
}
]
}