Advertisement
soleedus

Sublime Text 2 - g++ package (Dev-C++)

Oct 23rd, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "path": "c:\\Dev-Cpp\\bin\\",
  3.     "cmd": ["g++.exe", "-static", "-o", "$file_base_name", "$file"],
  4.     "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
  5.     "working_dir": "${file_path}",
  6.     "selector": "source.c, source.c++",
  7.  
  8. "variants":
  9.     [
  10.         {
  11.             "name": "Run",         
  12.             "cmd": ["start", "cmd", "/c $file_base_name.exe"],
  13.             "selector": "text.c",
  14.             "shell": "true"
  15.         }
  16.     ]
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement