mandelmapper/.vscode/tasks.json
2018-07-31 23:35:18 -06:00

26 lines
748 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": "cd mandelmapper ; go build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Raspberry Pi 3 Build",
"type": "shell",
"command": "cd mandelmapper ; export GOOS=linux ; export GOARCH=arm ; export GOARM=7 ; go build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}