From 415ce4c4a2e29e102d90791556d2cc1748d23504 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 18 Mar 2021 14:51:46 -0500 Subject: VScode stuff --- .vscode/launch.json | 4 ++-- .vscode/tasks.json | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index d875b0d..a4445ae 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -34,8 +34,8 @@ "name": "C/C++", "type": "cppdbg", "request": "launch", - "preLaunchTask": "Build c++", - "program": "${workspaceFolder}/DEBUG_C", + "preLaunchTask": "Build C", + "program": "${fileDirname}/DEBUG_C", "args": [], "stopAtEntry": false, "cwd": "${fileDirname}", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6af30e3..6b01641 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ "version": "2.0.0", "tasks": [ { - "label": "Build c++", + "label": "Build C", "type": "shell", "command": "gcc", "args": [ @@ -18,6 +18,14 @@ "group": { "kind": "build", "isDefault": true + }, + "presentation": { + "echo": false, + "reveal": "always", + "focus": false, + "panel": "shared", + "showReuseMessage": false, + "clear": false } } ] -- cgit v1.2.3