Guide-Vest/.vscode/tasks.json

15 lines
360 B
JSON
Raw Normal View History

2024-05-24 22:06:52 +08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make pro -j64"
// for cmake
//"command": "cd build && make pro -j25"
}
]
}