From 6d6e9b7fd07464e354a31ad3795536f67ca02362 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 28 Nov 2018 16:01:42 +0000 Subject: [PATCH] Added gitignore and vscode dependancy --- .gitignore | 1 + .vscode/launch.json | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index d378bb9..69b7f21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ CMakeFiles/ CMakeCache.txt +build/ cmake_install.cmake Makefile diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d430c7c --- /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": "${workspaceFolder}/bin/crumpet-engine", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/src", + "environment": [], + "externalConsole": true, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] +} \ No newline at end of file