diff options
| author | Murray Campbell <MurrayIRC@gmail.com> | 2018-09-21 18:10:50 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-21 18:10:50 -0500 |
| commit | 4757ead493422b749ef0caf0b97c854993bb0be4 (patch) | |
| tree | 073f2ee0b3ed7b9f9d5c3e59239d4773a7655efc /projects/VSCode | |
| parent | c015529088e62b26c8419a1e1ed026ec959d24a7 (diff) | |
| download | raylib-4757ead493422b749ef0caf0b97c854993bb0be4.tar.gz raylib-4757ead493422b749ef0caf0b97c854993bb0be4.zip | |
Update launch.json
Diffstat (limited to 'projects/VSCode')
| -rw-r--r-- | projects/VSCode/.vscode/launch.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/projects/VSCode/.vscode/launch.json b/projects/VSCode/.vscode/launch.json index 5accab28..8c8a67ea 100644 --- a/projects/VSCode/.vscode/launch.json +++ b/projects/VSCode/.vscode/launch.json @@ -64,5 +64,47 @@ "cwd": "${workspaceFolder}", "preLaunchTask": "(OSX) build release" }, + { + "name": "(GNU) Debug", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/game", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "/usr/bin/gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": false + } + ], + "preLaunchTask": "(GNU) build debug" + }, + { + "name": "(GNU) Run", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/game", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "/usr/bin/gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": false + } + ], + "preLaunchTask": "(GNU) build release" + } ] } |
