Skip to content

Instantly share code, notes, and snippets.

@matiangul
Created October 7, 2013 20:27
Show Gist options
  • Save matiangul/6874384 to your computer and use it in GitHub Desktop.
Save matiangul/6874384 to your computer and use it in GitHub Desktop.
Sublime C++ build system for Windows Users
{
"cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}", "&&", "start", "cmd", "/c", "$file_base_name & pause"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"shell": true,
"variants":
[
{
"name": "Run",
"cmd": ["start", "cmd", "/c", "$file_base_name & pause"],
"shell": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment