Advertisement
Guest User

Untitled

a guest
May 24th, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "shell",
  8. "label": "g++.exe build active file",
  9. "command": "C:\\MinGW\\bin\\g++.exe",
  10. "args": [
  11. "-g",
  12. "${file}",
  13. "-o",
  14. "${fileDirname}\\${fileBasenameNoExtension}.exe"
  15. ],
  16. "options": {
  17. "cwd": "C:\\MinGW\\bin"
  18. },
  19. "problemMatcher": [
  20. "$gcc"
  21. ]
  22. }
  23. ]
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement