mandelmapper/.vscode/tasks.json

22 lines
624 B
JSON
Raw Normal View History

2018-07-31 04:41:16 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
2018-08-01 05:35:18 +00:00
"label": "Local Build",
2018-07-31 04:41:16 +00:00
"type": "shell",
"command": "go build ; ./mandelmapper",
2018-07-31 04:41:16 +00:00
"group": {
"kind": "build",
"isDefault": true
2018-08-22 03:28:48 +00:00
},
"problemMatcher": []
2018-08-01 05:35:18 +00:00
},
{
"label": "Raspberry Pi 3 Build",
"type": "shell",
"command": "export GOOS=linux ; export GOARCH=arm ; export GOARM=7 ; go build"
2018-07-31 04:41:16 +00:00
}
]
}