Skip to content

Instantly share code, notes, and snippets.

@KoffeinFlummi
Last active August 29, 2015 13:57
Show Gist options
  • Save KoffeinFlummi/b8b312eb4d640bbe1a27 to your computer and use it in GitHub Desktop.
Save KoffeinFlummi/b8b312eb4d640bbe1a27 to your computer and use it in GitHub Desktop.
Sublime Text 2 C++ Build Settings
{
"cmd": ["g++", "-std=C++11", "${file}", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"cmd": ["g++", "-std=C++11", "${file}", "-o", "${file_path}/${file_base_name}", "&&", "${file_path}/${file_base_name}.exe"],
"shell":true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment