2023-02-19 21:34:12 +00:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2023-02-20 03:22:55 +00:00
|
|
|
"label": "build debug",
|
2023-02-19 21:34:12 +00:00
|
|
|
"type": "shell",
|
|
|
|
"command": "scons config=debug --no-packs --jobs=12",
|
|
|
|
"problemMatcher": [],
|
|
|
|
"group": {
|
2023-02-20 03:22:55 +00:00
|
|
|
"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"
|
2023-02-19 21:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|