Files
notes_estom/.vscode/tasks.json
2021-04-12 16:08:11 +08:00

24 lines
621 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++:build",
"command": "D:\\mingw\\mingw64\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "编译器: D:\\mingw\\mingw64\\bin\\g++.exe"
},
]
}