编译C ++源代码后,我想通过sublime text命令用输入文件运行它。怎么办呢?
答案 0 :(得分:2)
如果你的意思是你的C ++构建文件之后的参数,我找到了一种以狡猾的方式做到这一点的方法......我为c ++ 11创建了一个新的构建系统并添加了输入文件(参见下面的input_file)运行部分。
{
"cmd": ["g++", "-Wall", "-Wextra", "-pedantic", "-std=c++0x", "${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": ["bash", "-c", "g++ -Wall -Wextra -pedantic -std=c++0x '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}' input_file"]
}
]}
将文件保存在C++11.sublime-build
中,例如$HOME/.config/sublime-text-2/Packages/User
。选择Build System C ++ 11,它应该可以胜任。