12345678910111213141516171819202122232425262728 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "type": "cppbuild",
- "label": "g++.exe build active file",
- "command": "D:/mingw-w64/mingw64/bin/g++.exe",
- "args": [
- "-fdiagnostics-color=always",
- "-g",
- "${file}",
- "-o",
- "${fileDirname}\\${fileBasenameNoExtension}.exe"
- ],
- "options": {
- "cwd": "D:/mingw-w64/mingw64/bin"
- },
- "problemMatcher": [
- "$gcc"
- ],
- "group": {
- "kind": "test",
- "isDefault": true
- },
- "detail": "编译器: D:/mingw-w64/mingw64/bin/g++.exe"
- },
- ]
- }
|