lzw9560
8/17/2016 - 2:02 AM

用于在Sublime Text 3基础上构建C/C++IDE,Windows下

用于在Sublime Text 3基础上构建C/C++IDE,Windows下

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