12345678910111213141516171819202122 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "type": "shell",
- "label": "build++.exe g file", //这里注意一下,见下文
- "command": "C:\\MinGW\\bin\\g++.exe",
- "args": [
- "-g",
- "${file}",
- "-o",
- "${fileDirname}\\${fileBasenameNoExtension}.exe"
- ],
- "options": {
- "cwd": "C:\\MinGW\\bin"
- },
- "problemMatcher": [
- "$gcc"
- ]
- }
- ]
- }
|