dolphin/CMakeSettings.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.6 KiB
JSON
Raw Normal View History

2020-02-09 16:49:20 +00:00
{
"configurations": [
{
2019-05-08 21:57:47 +00:00
"name": "Release",
"configurationType": "Release",
2019-05-15 07:53:42 +00:00
"generator": "Ninja",
2019-05-08 21:57:47 +00:00
"inheritEnvironments": [ "msvc_x64_x64" ],
2019-05-15 07:53:42 +00:00
"buildCommandArgs": "",
"buildRoot": "${workspaceRoot}\\Build\\${name}",
"cmakeCommandArgs": "",
2019-05-08 21:57:47 +00:00
"variables": [
]
},
{
2019-05-08 21:57:47 +00:00
"name": "Debug",
"configurationType": "Debug",
2019-05-15 07:53:42 +00:00
"generator": "Ninja",
2019-05-08 21:57:47 +00:00
"inheritEnvironments": [ "msvc_x64_x64" ],
2019-05-15 07:53:42 +00:00
"buildCommandArgs": "",
"buildRoot": "${workspaceRoot}\\Build\\${name}",
"cmakeCommandArgs": "",
2019-05-08 21:57:47 +00:00
"variables": [
]
2020-02-11 23:07:56 +00:00
},
{
"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"
}
]
}
]
2019-05-08 21:57:47 +00:00
}