dolphin/CMakeSettings.json

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

80 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2020-02-09 08:49:20 -08:00
{
"configurations": [
{
2019-05-08 14:57:47 -07:00
"name": "Release",
"configurationType": "Release",
2019-05-15 00:53:42 -07:00
"generator": "Ninja",
2019-05-08 14:57:47 -07:00
"inheritEnvironments": [ "msvc_x64_x64" ],
2019-05-15 00:53:42 -07:00
"buildCommandArgs": "",
"buildRoot": "${workspaceRoot}\\Build\\${name}",
"cmakeCommandArgs": "",
2019-05-08 14:57:47 -07:00
"variables": [
{
"name": "Qt5_DIR",
2020-02-09 08:49:20 -08:00
"value": "${workspaceRoot}\\Externals\\Qt\\Qt5.14.1\\msvc2019_64\\lib\\cmake\\Qt5"
2019-05-08 14:57:47 -07:00
}
]
},
{
2019-05-08 14:57:47 -07:00
"name": "Debug",
"configurationType": "Debug",
2019-05-15 00:53:42 -07:00
"generator": "Ninja",
2019-05-08 14:57:47 -07:00
"inheritEnvironments": [ "msvc_x64_x64" ],
2019-05-15 00:53:42 -07:00
"buildCommandArgs": "",
"buildRoot": "${workspaceRoot}\\Build\\${name}",
"cmakeCommandArgs": "",
2019-05-08 14:57:47 -07:00
"variables": [
{
"name": "Qt5_DIR",
2020-02-09 08:49:20 -08:00
"value": "${workspaceRoot}\\Externals\\Qt\\Qt5.14.1\\msvc2019_64\\lib\\cmake\\Qt5"
2019-05-08 14:57:47 -07:00
}
]
2020-02-11 15:07:56 -08:00
},
{
"name": "Release (arm64)",
"configurationType": "Release",
"generator": "Ninja",
"inheritEnvironments": [ "msvc_arm64_x64" ],
"buildCommandArgs": "",
"buildRoot": "${workspaceRoot}\\Build\\${name}",
"cmakeCommandArgs": "",
"variables": [
{
"name": "Qt5_DIR",
"value": "${workspaceRoot}\\Externals\\Qt\\Qt5.14.1\\msvc2019_arm64\\lib\\cmake\\Qt5"
},
{
"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": "Qt5_DIR",
"value": "${workspaceRoot}\\Externals\\Qt\\Qt5.14.1\\msvc2019_arm64\\lib\\cmake\\Qt5"
},
{
"name": "CMAKE_SYSTEM_NAME",
"value": "Windows"
},
{
"name": "CMAKE_SYSTEM_PROCESSOR",
"value": "aarch64"
}
]
}
]
2019-05-08 14:57:47 -07:00
}