Commit 9f9f4d258ff3a5e7e5d9eeafb1de646df0eb3645

Authored by Perry Werneck
1 parent fd4606e2

Adding build task for vscode.

Showing 1 changed file with 22 additions and 0 deletions   Show diff stats
.vscode/tasks.json 0 → 100644
... ... @@ -0,0 +1,22 @@
  1 +{
  2 + // See https://go.microsoft.com/fwlink/?LinkId=733558
  3 + // for the documentation about the tasks.json format
  4 + "version": "2.0.0",
  5 + "tasks": [
  6 + {
  7 + "type": "shell",
  8 + "label": "Make Debug",
  9 + "command": "make",
  10 + "args": [
  11 + "Debug"
  12 + ],
  13 + "problemMatcher": [
  14 + "$gcc"
  15 + ],
  16 + "group": {
  17 + "kind": "build",
  18 + "isDefault": true
  19 + }
  20 + }
  21 + ]
  22 +}
0 23 \ No newline at end of file
... ...