RTU/.vscode/tasks.json

37 lines
1016 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "run-build-script",
"type": "shell",
"command": "${workspaceFolder}/release/build.sh",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "cppbuild",
"label": "C/C++: aarch64-linux-gnu-g++ 生成活动文件",
"command": "/usr/bin/aarch64-linux-gnu-g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "编译器: /usr/bin/aarch64-linux-gnu-g++"
}
]
}