我想同步 tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe 生成活动文件",
"command": "g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "编译器: D:\\cpeditor-6.11.1-windows-x64-portable-with-gcc-12.2.0-LLVM-14.0.6\\mingw64\\bin\\g++.exe"
}
]
}
我记得之前没有注意就有同步成功过,但是现在怎么不行了