tasks.json 524 B

12345678910111213141516171819202122232425262728
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "cppbuild",
  6. "label": "g++.exe build active file",
  7. "command": "D:/mingw-w64/mingw64/bin/g++.exe",
  8. "args": [
  9. "-fdiagnostics-color=always",
  10. "-g",
  11. "${file}",
  12. "-o",
  13. "${fileDirname}\\${fileBasenameNoExtension}.exe"
  14. ],
  15. "options": {
  16. "cwd": "D:/mingw-w64/mingw64/bin"
  17. },
  18. "problemMatcher": [
  19. "$gcc"
  20. ],
  21. "group": {
  22. "kind": "test",
  23. "isDefault": true
  24. },
  25. "detail": "编译器: D:/mingw-w64/mingw64/bin/g++.exe"
  26. },
  27. ]
  28. }