/ .vscode / tasks.json
tasks.json
 1  {
 2      "version": "2.0.0",
 3      "tasks": [
 4          {
 5              "type": "shell",
 6              "label": "Build NotBlood Debug",
 7              "linux": {
 8                  "command": "make blood RELEASE=0",
 9                  "details": "GNU Make for Linux"
10              },
11              "windows": {
12                  "command": "mingw32-make.exe blood RELEASE=0",
13                  "detail": "GNU Make with mingw32 for Windows"
14              },
15              "group": "build",
16              "problemMatcher": [],
17          },
18          {
19              "type": "shell",
20              "label": "Clean all",
21              "linux": {
22                  "command": "make clean",
23                  "details": "GNU Make for Linux"
24              },
25              "windows": {
26                  "command": "mingw32-make.exe clean",
27                  "detail": "GNU Make with mingw32 for Windows"
28              },
29              "group": "build",
30              "problemMatcher": [],
31          }
32      ]
33  }