mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
// 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"
|
|
}
|
|
}
|
|
]
|
|
}
|