Skip to content

Instantly share code, notes, and snippets.

@CSElliyas
Created November 28, 2016 15:55
Show Gist options
  • Save CSElliyas/5f00e9cb6e02f87b03bde25a1bd22ce0 to your computer and use it in GitHub Desktop.
Save CSElliyas/5f00e9cb6e02f87b03bde25a1bd22ce0 to your computer and use it in GitHub Desktop.
compile c or c++ in sublime 3
{
"shell_cmd": "g++ \"${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",
"shell_cmd": "g++ \"${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