diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-03-18 14:51:46 -0500 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-03-18 14:51:46 -0500 |
commit | 415ce4c4a2e29e102d90791556d2cc1748d23504 (patch) | |
tree | 0afc77ddb4c5c0f9efd1dcd8a2f16bf6f86d3843 | |
parent | fix command args (diff) | |
download | homework-415ce4c4a2e29e102d90791556d2cc1748d23504.tar homework-415ce4c4a2e29e102d90791556d2cc1748d23504.tar.gz homework-415ce4c4a2e29e102d90791556d2cc1748d23504.tar.bz2 homework-415ce4c4a2e29e102d90791556d2cc1748d23504.tar.lz homework-415ce4c4a2e29e102d90791556d2cc1748d23504.tar.xz homework-415ce4c4a2e29e102d90791556d2cc1748d23504.tar.zst homework-415ce4c4a2e29e102d90791556d2cc1748d23504.zip |
VScode stuff
Diffstat (limited to '')
-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 } } ] |