aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-02-17 21:54:18 +0100
committerFelix Morgner <felix.morgner@gmail.com>2026-02-17 21:54:18 +0100
commit6e6ee64bb4cf10a98c7bd92e06090502eb67e402 (patch)
tree851e7ca0513024595c2a6887681656e8dcc15ed1 /.vscode
downloadsnake.s-6e6ee64bb4cf10a98c7bd92e06090502eb67e402.tar.xz
snake.s-6e6ee64bb4cf10a98c7bd92e06090502eb67e402.zip
initial commit
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..b148580
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,23 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Debug",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${command:cmake.launchTargetPath}",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ]
+ }
+ ]
+} \ No newline at end of file