mirror of
https://github.com/dolphin-emu/dolphin
synced 2024-11-04 12:33:45 -05:00
1956ce151f
CMakeSettings.json is a Visual Studio only extention to cmake that isn't supported anywhere else. Not even Visual Studio Code. So we set CMAKE_PREFIX_PATH inside DolphinQt's CMakeLists.txt instead.
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Release",
|
|
"configurationType": "Release",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_x64_x64" ],
|
|
"buildCommandArgs": "",
|
|
"buildRoot": "${workspaceRoot}\\Build\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"variables": [
|
|
]
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"configurationType": "Debug",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_x64_x64" ],
|
|
"buildCommandArgs": "",
|
|
"buildRoot": "${workspaceRoot}\\Build\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"variables": [
|
|
]
|
|
},
|
|
{
|
|
"name": "Release (arm64)",
|
|
"configurationType": "Release",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_arm64_x64" ],
|
|
"buildCommandArgs": "",
|
|
"buildRoot": "${workspaceRoot}\\Build\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"variables": [
|
|
{
|
|
"name": "CMAKE_SYSTEM_NAME",
|
|
"value": "Windows"
|
|
},
|
|
{
|
|
"name": "CMAKE_SYSTEM_PROCESSOR",
|
|
"value": "aarch64"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "Debug (arm64)",
|
|
"configurationType": "Debug",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_arm64_x64" ],
|
|
"buildCommandArgs": "",
|
|
"buildRoot": "${workspaceRoot}\\Build\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"variables": [
|
|
{
|
|
"name": "CMAKE_SYSTEM_NAME",
|
|
"value": "Windows"
|
|
},
|
|
{
|
|
"name": "CMAKE_SYSTEM_PROCESSOR",
|
|
"value": "aarch64"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |