1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00
ScreenPlay/.vscode/launch.json

34 lines
1.3 KiB
JSON
Raw Normal View History

{
// 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": [
{
"name": "Launch Qt 6.5.0",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${command:cmake.buildDirectory}/bin",
"preLaunchTask": "CMake: build",
2023-01-26 12:10:12 +01:00
"internalConsoleOptions": "openOnSessionStart",
"environment": [
{
"name": "Path",
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\qml\\;${workspaceFolder}\\..\\vcpkg\\installed\\x64-windows\\debug\\bin;"
}
],
2023-01-26 13:59:36 +01:00
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml",
"osx": {
"MIMode": "lldb",
"type": "lldb"
},
"linux": {
2023-01-26 13:13:04 +01:00
"MIMode": "lldb",
"type": "lldb"
2023-01-26 13:13:04 +01:00
}
}
]
}