Advertisement
Guest User

Untitled

a guest
Mar 20th, 2020
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "echo",
  6. "type": "shell",
  7. "command": "echo Hello"
  8. },
  9. {
  10. "type": "shell",
  11. "label": "clang++ build active file",
  12. "command": "/usr/bin/clang++",
  13. "args": [
  14. "-g",
  15. "${file}",
  16. "-o",
  17. "${fileDirname}/${fileBasenameNoExtension}",
  18. "-I/Users/me/Downloads/SFML-2.5.1-macos-clang/include",
  19. "-L/Users/me/Downloads/SFML-2.5.1-macos-clang/lib",
  20. "-lsfml-graphics",
  21. "-lsfml-window",
  22. "-lsfml-system",
  23. "-lsfml-audio"
  24. ],
  25. "options": {
  26. "cwd": "/usr/bin"
  27. },
  28. "problemMatcher": [
  29. "$gcc"
  30. ],
  31. "group": "build"
  32. },
  33. {
  34. "type": "shell",
  35. "label": "clang build active file",
  36. "command": "/usr/bin/clang++",
  37. "args": [
  38. "-g",
  39. "${file}",
  40. "-o",
  41. "${fileDirname}/${fileBasenameNoExtension}"
  42. ],
  43. "options": {
  44. "cwd": "/usr/bin"
  45. }
  46. }
  47. ]
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement