Skip to content

Instantly share code, notes, and snippets.

@Irvel
Created January 22, 2016 18:39
Show Gist options
  • Save Irvel/6562c89c6e9f499660ac to your computer and use it in GitHub Desktop.
Save Irvel/6562c89c6e9f499660ac to your computer and use it in GitHub Desktop.
C++11 Sublime Build system for OSX
{
"cmd": ["clang++", "-Wall", "-std=c++11", "-stdlib=libc++", "${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": ["bash", "-c", "clang++ -Wall -std=c++11 -stdlib=libc++ '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment