tiny_os/.vscode/tasks.json

17 lines
391 B
JSON
Raw Permalink Normal View History

2024-04-24 20:15:25 +08:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "build test",
"command": "./.vscode/prepare_test.sh",
"problemMatcher": []
2024-05-06 15:53:48 +08:00
},
{
"type": "shell",
"label": "build kernel",
"command": "./.vscode/prepare_kernel.sh",
"problemMatcher": []
2024-04-24 20:15:25 +08:00
}
]
}