xmake-comsim/.vscode/tasks.json

22 lines
462 B
JSON

{
"tasks": [
{
"type": "shell",
"label": "XMake Build",
"command": "xmake",
"args": [
"f",
"-m",
"debug",
]
},
{
"type": "shell",
"label": "XMake Install",
"command": "xmake install",
"args": [],
"dependsOn": ["XMake Build"]
}
],
"version": "2.0.0"
}