Files
ebitengine-tools/example-tasks.json
2026-07-28 18:37:25 +02:00

36 lines
970 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
// Copy to .vscode/tasks.json and replace "ebitenginedemo" with your PROJECT name.
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"type": "shell",
"command": "go run .",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build & Run",
"type": "shell",
"command": "make clean && make build && ./bin/ebitenginedemo",
"problemMatcher": []
},
{
"label": "Build WASM",
"type": "shell",
"command": "make wasm",
"problemMatcher": []
},
{
"label": "Make build",
"type": "shell",
"command": "make build"
}
]
}