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