setup launch target

This commit is contained in:
Samuel Walker 2025-03-28 13:05:22 -06:00
parent 8605221316
commit 164f1e5285

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// 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": [
{
"type": "node-terminal",
"name": "PCSX2",
"request": "launch",
"command": "'/mnt/c/Program Files/PCSX2/pcsx2-qt.exe' '${workspaceFolder}/build/helloworld.iso' && exit"
}
]
}