Build system for Qt in Sublime Text 3 not working
问题 I have the following build system file which not working. { "cmd" : ["qmake", "-project"], "cmd" : ["qmake"], "cmd" : ["make"], "working_dir": "${project_path:${folder}}", } No files are generated. Usually following files should be created: qmake -project generates a .pro file. qmake generates the makefile make generates the executable file How can I run multiple commands in the build file? 回答1: You could make a bash file with all the commands in it, and set the command to that. { "cmd" : [