Skip to content

Instantly share code, notes, and snippets.

@mikhdm
Forked from chaliy/Visual C++.sublime-build
Last active August 1, 2019 13:36
Show Gist options
  • Save mikhdm/10760478 to your computer and use it in GitHub Desktop.
Save mikhdm/10760478 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"]
}
]
}
@hustc12
Copy link

hustc12 commented Jul 22, 2017

@vegetaz, exactly the same issue with you...

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