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