From 3acea2b0156e5d1ef6b212bba8e59031b34ea704 Mon Sep 17 00:00:00 2001 From: s1n Date: Tue, 13 Aug 2019 01:36:45 -0700 Subject: Create launch.json --- Visual Studio Code/.vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Visual Studio Code/.vscode/launch.json (limited to 'Visual Studio Code') diff --git a/Visual Studio Code/.vscode/launch.json b/Visual Studio Code/.vscode/launch.json new file mode 100644 index 0000000..2964028 --- /dev/null +++ b/Visual Studio Code/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + // 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}/pong.exe", // Executable. + "args": [], + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": true, + "MIMode": "gdb", + "miDebuggerPath": "C:\\mingw-w64\\mingw64\\bin\\gdb.exe", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] +} -- cgit v1.2.3