From 7023b8ef53df3d81ff5507c3a35da5f782f26f50 Mon Sep 17 00:00:00 2001 From: MagicTINTIN Date: Wed, 15 Mar 2023 08:37:03 +0100 Subject: [PATCH] added vscode debug mode (wating for working push) --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3cbca59 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // 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": [ + { + "command": "${workspaceFolder}/run_linux.sh ${workspaceFolder}/main.c", + "name": "Debug", + "request": "launch", + "type": "node-terminal" + } + ] +} \ No newline at end of file