diff options
-rw-r--r-- | .vscode/launch.json | 4 | ||||
-rw-r--r-- | .vscode/tasks.json | 10 |
2 files changed, 11 insertions, 3 deletions
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 } } ] |