From bc9449e7de0b1ef372e6ff247d6404c139d7a445 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Thu, 7 Jan 2021 14:28:57 +0100 Subject: [PATCH] Add debugging configuration --- launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 launch.json diff --git a/launch.json b/launch.json new file mode 100644 index 0000000..a9077d4 --- /dev/null +++ b/launch.json @@ -0,0 +1,12 @@ +{ + "configurations": [ + { + "name": "Debug Inferno", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/build/game", + "cwd": "${workspaceFolder}/build", + "MIMode": "gdb" + } + ] +}