From 614a1a73f8abf2629bcfb84fefc89b8460c76dd9 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Tue, 9 Jul 2019 14:20:06 +0200 Subject: [PATCH] Add task integration for IDE VS Code --- .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..17bdc08 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "type":"shell", + "command": "make", + "echoCommand": true, + "problemMatcher": { + "base": "gcc", + }, + "tasks": [ + { + "label": "all", + "args": ["all"], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "clean", + "args": ["clean"], + } + ] +} \ No newline at end of file