12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "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"
- }
- ]
- }
- ]
- }
|