Files
ogre-schema/.vscode/tasks.json
dcooperdalrymple 544cc6aa9a Initial build.
2024-06-06 13:07:22 -05:00

26 lines
572 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Package",
"type": "shell",
"command": "make",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
},
{
"label": "Compile",
"type": "shell",
"command": "make compile",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
}
]
}