2023-02-09 16:35:43 +01:00
|
|
|
|
2022-06-12 18:49:00 +02:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2023-07-01 11:23:17 +02:00
|
|
|
"name": "Windows Launch",
|
2023-02-09 16:35:43 +01:00
|
|
|
"type": "cppvsdbg",
|
2022-12-28 11:36:16 +01:00
|
|
|
"request": "launch",
|
2023-02-09 16:35:43 +01:00
|
|
|
"program": "${command:cmake.launchTargetPath}",
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${command:cmake.buildDirectory}/bin",
|
|
|
|
"preLaunchTask": "CMake: build",
|
2023-01-26 12:10:12 +01:00
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
2023-07-01 10:44:37 +02:00
|
|
|
"console": "none",
|
2023-02-09 16:35:43 +01:00
|
|
|
"environment": [
|
|
|
|
{
|
|
|
|
"name": "Path",
|
2023-05-25 15:14:16 +02:00
|
|
|
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.1\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.1\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.1\\msvc2019_64\\qml\\;${workspaceFolder}\\..\\vcpkg\\installed\\x64-windows\\debug\\bin;"
|
2023-02-09 16:35:43 +01:00
|
|
|
}
|
|
|
|
],
|
2023-07-01 11:23:17 +02:00
|
|
|
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "macOS Launch",
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${command:cmake.launchTargetPath}",
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${command:cmake.buildDirectory}/bin",
|
2022-06-12 18:49:00 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|