Files
LiquidGUI/.vscode/tasks.json
Dunestorm aed37b7fae LiquidGUI [1.1.0.0] Dev
- Added build script for Linux.
2024-07-08 23:25:29 +01:00

19 lines
495 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Windows Build",
"type": "shell",
"command": "cmd.exe /c build.bat",
"group": "build"
},
{
"label": "Linux Build",
"type": "shell",
"command": "${workspaceFolder}/build.sh",
"group": "build"
}
]
}