Skip to content

Instantly share code, notes, and snippets.

@arya-oss
Created April 11, 2016 16:43
Show Gist options
  • Save arya-oss/3407440f31405be80c19e5add108999b to your computer and use it in GitHub Desktop.
Save arya-oss/3407440f31405be80c19e5add108999b to your computer and use it in GitHub Desktop.
C++ build option for sublime. create new build system and add following lines
{
"cmd": ["g++", "$file", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c",
"variants":
[
{
"name": "Run",
"shell": true,
"cmd": ["gnome-terminal -e 'bash -c \"${file_path}/${file_base_name}; echo; echo Press ENTER to continue; read line;exit; exec bash\"'"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment