建立新的编译系统
Tools->Build System->New Build System 在打开的页面中粘贴以下代码
{ "cmd": ["g++", "-std=c++11","${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": ["cmd", "/c", "g++", "-std=c++11","${file}", "-o", "${file_path}/${file_base_name}", "&&", "start", "cmd", "/c", "${file_path}/${file_base_name} & pause"] } ] }
保存文件(ctrl+s),并且取一个自己喜欢的名字,(后缀名不要改),在Tools->Build System中选择即可。