gtkradiant/.vscode/tasks.json
Timothee 'TTimo' Besset 2b6ee83552 add a flatpak build task
2023-02-19 21:22:55 -06:00

27 lines
832 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"type": "shell",
"command": "scons config=debug --no-packs --jobs=12",
"problemMatcher": [],
"group": {
"kind": "build"
}
},
{
"label": "build flatpak",
"type": "shell",
"command": "flatpak-builder --user --install --disable-updates --force-clean --ccache gtkradiant io.github.TTimo.GtkRadiant.json",
"options": {
"cwd": "${workspaceFolder}/../io.github.TTimo.GtkRadiant"
},
"group": {
"kind": "build"
}
}
]
}