Files
Leetcode-100/.vscode/tasks.json
2025-07-27 23:27:40 +08:00

28 lines
568 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "E:\\Applications\\MSYS2\\ucrt64\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "E:\\Applications\\MSYS2\\ucrt64\\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: E:\\Applications\\MSYS2\\ucrt64\\bin\\g++.exe"
}
]
}