diff --git a/.gitignore b/.gitignore index 1006475..0669be2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ build/ -.vscode/ CMakeFiles/ CMakeCache.txt diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..8b9c9b0 --- /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": "C/C++: g++ debug", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/build/inferno", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/build", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "/usr/bin/gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + } + ], + } + ] +} \ No newline at end of file