Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // Create a custom Cloud9 runner - similar to the Sublime build system
  2. // For more information see http://docs.aws.amazon.com/console/cloud9/create-run-config
  3. {
  4. "cmd" : ["ls", "$file", "$args"],
  5. "info" : "Started $project_path$file_name",
  6. "env" : {},
  7. "selector" : "source.ext",
  8. "script" : [
  9. "g++ $file -o $file.o -lgtest_main -lgtest -lpthread",
  10. "chmod 755 $file.o",
  11. "$file.o"
  12. ]
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement