diff options
| author | s1n <[email protected]> | 2019-08-13 01:37:56 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-08-13 01:37:56 -0700 |
| commit | e3b42c7cfea46d50520e83fd35949c9a2a50a339 (patch) | |
| tree | 2c473c239b30e8ba1759785eedece1845d92c53d /Visual Studio Code/.vscode | |
| parent | Create launch.json (diff) | |
| download | cpp-init-e3b42c7cfea46d50520e83fd35949c9a2a50a339.tar.xz cpp-init-e3b42c7cfea46d50520e83fd35949c9a2a50a339.zip | |
Create tasks.json
Diffstat (limited to 'Visual Studio Code/.vscode')
| -rw-r--r-- | Visual Studio Code/.vscode/tasks.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Visual Studio Code/.vscode/tasks.json b/Visual Studio Code/.vscode/tasks.json new file mode 100644 index 0000000..f58bb74 --- /dev/null +++ b/Visual Studio Code/.vscode/tasks.json @@ -0,0 +1,18 @@ +{ + "version": "2.0.0", + "tasks": [{ + "label": "pong", // "Name". + "type": "shell", + "command": "g++", + "args": [ + "-g", + "-o", + "pong", // "Name". + "main.cpp" // "Source". + ], + "group": { + "kind": "build", + "isDefault": true + } + }] +} |