|
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Build",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "windows": {
- "command": "C:/msys64/mingw64.exe",
- "args": [
- "make",
- "RACK_DIR=/c/Rack-SDK"
- ]
- },
- "options": {
- "cwd": "${workspaceRoot}"
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Clean",
- "type": "shell",
- "command": "C:/msys64/mingw64.exe",
- "args": [
- "make",
- "RACK_DIR=/c/Rack-SDK",
- "clean"
- ],
- "options": {
- "cwd": "${workspaceRoot}"
- },
- "problemMatcher": []
- }
- ]
- }
|