Skip to content

Instantly share code, notes, and snippets.

@vegetaz
Forked from mikhdm/Visual C++.sublime-build
Created January 17, 2017 23:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vegetaz/512277e75b9a2c55fc78b4640842c8a6 to your computer and use it in GitHub Desktop.
Save vegetaz/512277e75b9a2c55fc78b4640842c8a6 to your computer and use it in GitHub Desktop.
Visual C++ build system for sublime text to exec and compile .c and .cpp files from Subime Text editor.
{
"cmd": ["vcvars32.bat", "&", "cl", "/EHsc", "${file}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.cpp, source.c++",
// By default cl is not in your PATH, so add it to your path (preferably)
// or uncomment "path" and check that it has correct value
//"path": "path:/to/folder/where/cl.exe/located",
// this also will set path for vcvars32.bat
"shell": true, // Without this sublime has hard times to parse "&" in out command line
"variants":
[
{
"name": "Run",
"cmd": ["vcvars32.bat", "&", "cl", "/EHsc", "${file}", "&", "${file_path}/${file_base_name}.exe"]
}
]
}
@vegetaz
Copy link
Author

vegetaz commented Jan 17, 2017

Something went wrong .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment