From ec38023f3ed75e81190107bac95eb481930d2286 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Fri, 8 Aug 2025 09:49:47 +0200 Subject: [PATCH] cleans up tasks.json --- .vscode/tasks.json | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6d68af2..d88a924 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,25 +2,7 @@ "version": "2.0.0", "tasks": [ { - "label": "CMake-and-make", - "type": "shell", - "command": "cmake --preset Release -B build/Release && cmake --build build/Release", - "problemMatcher": [], - "presentation": { - "echo": true, - "reveal": "always", - "focus": true, - "panel": "dedicated", - "showReuseMessage": false, - "clear": true - }, - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "Build-FW", + "label": "Build FW", "type": "shell", "command": "make -C fw/hello-world clean all", "problemMatcher": [], @@ -34,7 +16,7 @@ } }, { - "label": "Execute-VP", + "label": "Execute VP", "type": "shell", "command": "build/Debug/src/riscv-vp -f fw/hello-world/hello.elf -p pctrace=contrib/TGC_C_cycles.json", "problemMatcher": [], @@ -48,9 +30,9 @@ } }, { - "label": "VP-GDB-Server", + "label": "Execute VP with GDB-Server", "type": "shell", - "command": "build/Debug/src/riscv-vp -v TRACEALL --disass -f fw/hello-world/hello.elf -g 10000", + "command": "build/Debug/src/riscv-vp -f fw/hello-world/hello.elf -g 10000", "problemMatcher": [], "presentation": { "echo": true,