Browse Source

Update launch.json

pull/646/head^2
Murray Campbell 6 years ago
committed by GitHub
parent
commit
4757ead493
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 42 additions and 0 deletions
  1. +42
    -0
      projects/VSCode/.vscode/launch.json

+ 42
- 0
projects/VSCode/.vscode/launch.json View File

@ -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"
}
]
}

Loading…
Cancel
Save