This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
openskins/.vscode/tasks.json

40 lines
871 B
JSON
Raw Normal View History

2021-01-28 13:20:49 +01:00
{
"version": "2.0.0",
"tasks": [
{
"label": "compile",
"type": "shell",
"command": "make compile"
},
{
"label": "install",
"type": "shell",
"command": "make install"
},
{
"label": "clean",
"type": "shell",
"command": "make clean"
},
{
"label": "build",
"type": "shell",
"command": "make build"
},
{
"label": "run",
"type": "shell",
"command": "make run"
},
{
"label": "test",
"type": "shell",
"command": "make test"
2021-01-30 05:19:27 +01:00
},
{
"label": "standalone",
"type": "shell",
"command": "make standalone"
2021-01-28 13:20:49 +01:00
}
]
}