From 4e4ddd8234ef95511017a9dab3bcc3334004e169 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Wed, 17 Oct 2018 07:39:52 +0200 Subject: [PATCH] Add tasks --- .vscode/tasks.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..873e16b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,19 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Build All Exercises", + "type": "shell", + "command": "mkdir -p build && cd build && cmake .. && make -j 8", + "problemMatcher": [] + }, + { + "label": "Run Exercise 1", + "type": "shell", + "command": "build/bin/./Exercise1", + "problemMatcher": [] + } + ] +} \ No newline at end of file