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",
|
2018-08-01 02:10:23 +00:00
|
|
|
"command": "cd mandelmapper ; go build",
|
2018-07-31 04:41:16 +00:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
2018-08-01 05:35:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"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": []
|
2018-07-31 04:41:16 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|