gtkradiant/.vscode/tasks.json

37 lines
1.1 KiB
JSON
Raw Permalink Normal View History

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