diff options
author | Matthew Strapp <strap012@umn.edu> | 2020-09-24 13:30:28 -0500 |
---|---|---|
committer | GitHub Enterprise <noreply-github@umn.edu> | 2020-09-24 13:30:28 -0500 |
commit | f013fe258e5fc2cdaa72730613b93da233c04108 (patch) | |
tree | 877bd369fd48bb2e86da96c323e06cb87d5aaef0 /.vscode | |
parent | edit main README (diff) | |
parent | Start Master (diff) | |
download | csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.tar csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.tar.gz csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.tar.bz2 csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.tar.lz csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.tar.xz csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.tar.zst csci4061-f013fe258e5fc2cdaa72730613b93da233c04108.zip |
Merge pull request #7 from STRAP012/Matt's-Branch
Start working on Master (#4)
Diffstat (limited to '')
-rw-r--r-- | .vscode/launch.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..447de6d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // 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": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "enter program name, for example ${workspaceFolder}/a.out", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] +}
\ No newline at end of file |