Skip to content

Commit

Permalink
add back mac and win launch options
Browse files Browse the repository at this point in the history
  • Loading branch information
vberthiaume committed Oct 29, 2024
1 parent d0496a5 commit ef24785
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"name": "(gdb) Launch - Linux",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/Builds/ProPhat_artefacts/Debug/Standalone/ProPhat",
Expand All @@ -13,6 +13,31 @@
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb"
},
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/Builds/ProPhat_artefacts/Debug/Standalone/ProPhat.app",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
},
{
"name": "(gdb) Launch - Windows",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}\\Builds\\ProPhat_artefacts\\Debug\\Standalone\\ProPhat.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\\path\\to\\gdb.exe"
}
]
}

0 comments on commit ef24785

Please sign in to comment.