From 9f9f4d258ff3a5e7e5d9eeafb1de646df0eb3645 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Sat, 27 Jul 2019 10:35:47 -0300 Subject: [PATCH] Adding build task for vscode. --- .vscode/tasks.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+), 0 deletions(-) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..6b30967 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,22 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "label": "Make Debug", + "command": "make", + "args": [ + "Debug" + ], + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} \ No newline at end of file -- libgit2 0.21.2