Skip to content

Instantly share code, notes, and snippets.

@tmplt
Created July 9, 2014 15:16
Show Gist options
  • Save tmplt/fac59574f8c98110cb87 to your computer and use it in GitHub Desktop.
Save tmplt/fac59574f8c98110cb87 to your computer and use it in GitHub Desktop.
Compile C++11 in Sublime Text 2/3
{
"cmd": ["g++", "${file}", "-std=c++0x", "-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": ["${file_path}/${file_base_name}"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment