From cb7234a17f33e559afe402eff0b65bf4524d33b3 Mon Sep 17 00:00:00 2001 From: Atmos4 Date: Sun, 1 Dec 2024 16:13:36 +0100 Subject: [PATCH] remove unused vscode files --- .vscode/launch.json | 32 -------------------------------- .vscode/tasks.json | 15 --------------- 2 files changed, 47 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 0f454a1..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Debug linux", - "type": "gdb", - "request": "launch", - "target": "${workspaceRoot}/build/linux/main", - "cwd": "${workspaceRoot}", - "valuesFormatting": "parseText" - }, - { - "name": "C/C++ Runner: Debug Session", - "type": "cppdbg", - "request": "launch", - "args": [], - "stopAtEntry": false, - "externalConsole": false, - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/build/linux/main", - "MIMode": "gdb", - "miDebuggerPath": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ] - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index fbfea9d..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Build linux", - "type": "shell", - "command": "sh ${workspaceRoot}/build-linux.sh", - "problemMatcher": [], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -}