首页 > 代码库 > Sublime Text 3 c++编译环境配置

Sublime Text 3 c++编译环境配置

{
    "cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}"],
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "working_dir": "${file_path}",
    "selector": "source.c, source.c++",
    "encoding":"cp936",
    "variants":
    [
        {
            "name": "Run",
            "shell": true,
            "cmd" : ["start", "cmd", "/k", "${file_path}/${file_base_name} &&echo. & pause && exit"]
        }
    ]
}

ctrl+B 编译,shift+ctrl+B运行,可以在cmd窗口输入。