gioui-gomobile-example/.vscode/tasks.json

21 lines
554 B
JSON
Raw Permalink Normal View History

2022-04-15 18:09:46 +02:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "makeDebug",
"type": "shell",
"command": "make debug",
},
{
"label": "build",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"command": "go build -o debug github.com/empathicqubit/giouibind/desktop"
}
]
}