1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-22 10:42:29 +01:00
This commit is contained in:
Elias Steurer 2023-07-02 12:26:10 +02:00
commit 12314cafde

20
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Launch Qt 6.5.1", "name": "Windows Launch",
"type": "cppvsdbg", "type": "cppvsdbg",
"request": "launch", "request": "launch",
"program": "${command:cmake.launchTargetPath}", "program": "${command:cmake.launchTargetPath}",
@ -21,15 +21,15 @@
"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;" "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;"
} }
], ],
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml", "visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml"
"osx": { },
"MIMode": "lldb", {
"type": "lldb" "name": "macOS Launch",
}, "type": "lldb",
"linux": { "request": "launch",
"MIMode": "lldb", "program": "${command:cmake.launchTargetPath}",
"type": "lldb" "args": [],
} "cwd": "${command:cmake.buildDirectory}/bin",
} }
] ]
} }