mandelmapper/.vscode/tasks.json

22 lines
624 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Local Build",
"type": "shell",
"command": "go build ; ./mandelmapper",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Raspberry Pi 3 Build",
"type": "shell",
"command": "export GOOS=linux ; export GOARCH=arm ; export GOARM=7 ; go build"
}
]
}