Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. {
  2. "shell": true,
  3. "cmd":
  4. [
  5. "g++", "main.cpp", "recognition.cpp", "testing.cpp", "-o", "speach", "&&",
  6. "speach"
  7. ],
  8. "selector": "source.cpp",
  9. "working_dir": "$file_path",
  10.  
  11. "variants":
  12. [
  13. {
  14. "name": "Build",
  15. "shell": true,
  16. "cmd": ["g++", "main.cpp", "recognition.cpp", "testing.cpp", "-o", "speach"]
  17. },
  18. {
  19. "name": "Run",
  20. "shell": true,
  21. "cmd": ["speach"]
  22. }
  23. ]
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement