Created
February 14, 2013 01:51
-
-
Save trietptm/4950038 to your computer and use it in GitHub Desktop.
Working C++.sublime-build on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", | |
"cmd": ["${file_path}/${file_base_name}.exe"] | |
} | |
] | |
} |
The scanf does not works.
For the record, couldn't build at windows because I was opening sublime without administration privileges.
Hey what is file, file_path and file_base_name?
Hi, Im new to this stuff, where do I paste that code in order for me to compile using cmd?
Thank you :)
oke thank so much
How to use that code ?
@dprophecyguy Tools->Build System->New build system
But this config not working..
Is there a way to default to g++ 11 ? like in linux we add "-std=c++11" flag ?
I want to use c++11 features like looping with auto etc.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks so much! This saved me a ton of time trying to figure out the details. :)