mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
cmake: add msvc preset
This commit is contained in:
parent
b046d79e63
commit
15e5a555df
1 changed files with 57 additions and 21 deletions
|
@ -1,23 +1,59 @@
|
||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"configurePresets": [
|
"configurePresets": [
|
||||||
{
|
{
|
||||||
"name": "gcc-debug",
|
"name": "Release",
|
||||||
"binaryDir": "build-gcc-debug",
|
"generator": "Ninja",
|
||||||
"generator": "Ninja",
|
"binaryDir": "Build\\${presetName}",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "Debug",
|
"CMAKE_BUILD_TYPE": "Release"
|
||||||
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
}
|
||||||
}
|
},
|
||||||
},
|
{
|
||||||
{
|
"name": "Debug",
|
||||||
"name": "clang-debug",
|
"generator": "Ninja",
|
||||||
"binaryDir": "build-clang-debug",
|
"binaryDir": "Build\\${presetName}",
|
||||||
"generator": "Ninja",
|
"cacheVariables": {
|
||||||
"cacheVariables": {
|
"CMAKE_BUILD_TYPE": "Debug"
|
||||||
"CMAKE_BUILD_TYPE": "Debug",
|
}
|
||||||
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
},
|
||||||
}
|
{
|
||||||
}
|
"name": "Release (arm64)",
|
||||||
]
|
"generator": "Ninja",
|
||||||
|
"binaryDir": "Build\\${presetName}",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Release",
|
||||||
|
"CMAKE_SYSTEM_NAME": "Windows",
|
||||||
|
"CMAKE_SYSTEM_PROCESSOR": "aarch64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Debug (arm64)",
|
||||||
|
"generator": "Ninja",
|
||||||
|
"binaryDir": "Build\\${presetName}",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Debug",
|
||||||
|
"CMAKE_SYSTEM_NAME": "Windows",
|
||||||
|
"CMAKE_SYSTEM_PROCESSOR": "aarch64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gcc-debug",
|
||||||
|
"binaryDir": "build-gcc-debug",
|
||||||
|
"generator": "Ninja",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Debug",
|
||||||
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "clang-debug",
|
||||||
|
"binaryDir": "build-clang-debug",
|
||||||
|
"generator": "Ninja",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Debug",
|
||||||
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue