From 02e202cb3b020f929e3d0aba47e7312cd6f9518b Mon Sep 17 00:00:00 2001 From: kayomn Date: Fri, 24 Feb 2023 22:54:20 +0000 Subject: [PATCH] Add build task to VS Code project --- .vscode/tasks.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..725e001 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "type": "process", + "command": "python3", + "args": ["${workspaceFolder}/build.py"], + "problemMatcher": "$gcc", + "presentation": { + "echo": true, + "reveal": "silent", + "focus": false, + "panel": "shared", + "showReuseMessage": true, + "clear": true, + "revealProblems": "onProblem" + }, + "group": { + "kind": "build", + "isDefault": true + }, + } + ] +}