diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 2 | ||||
-rw-r--r-- | .vscode/tasks.json | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 9da39f0..e9457ca 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,7 +3,7 @@ // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", - "program": "./build/StormLib_test", + "program": "${workspaceFolder}/build/StormLib_test", "configurations": [ { "name": "(gdb) Launch", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4217112..05054c5 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,8 +2,8 @@ "tasks": [ { "type": "cppbuild", - "label": "C/C++: cpp build active file", - "command": "/usr/bin/cpp", + "label": "C/C++: g++ build active file", + "command": "/usr/bin/g++", "args": [ "-fdiagnostics-color=always", "-g", |