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

35 lines
745 B
JSON

{
"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"
}
]
}