Add launch configurations for vscode

This commit is contained in:
gsemaj 2023-07-11 12:29:47 -04:00
parent 2ddc956c9b
commit 5bf0c8f3ea
No known key found for this signature in database
GPG Key ID: 24B96BAA40497929
1 changed files with 19 additions and 0 deletions

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

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug (Linux)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/fusion",
"cwd": "${workspaceFolder}"
},
{
"name": "Debug (Windows)",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/winfusion.exe",
"cwd": "${workspaceFolder}"
}
]
}