Guest User

Untitled

a guest
Jan 17th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 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. "label": "build my app",
  8. "type": "shell",
  9. "command": "g++",
  10. "args": [
  11. "-std=gnu++0x", "-Wall", "-Werror", "-g", "tutorial.cpp"
  12. ],
  13. "group": {
  14. "kind": "build",
  15. "isDefault": true
  16. }
  17. }
  18. ]
  19. }
Add Comment
Please, Sign In to add comment