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:
How can I run multiple commands in the build file?
You could make a bash file with all the commands in it, and set the command to that.
{
"cmd" : ["my_build.sh"],
"working_dir": "${project_path:${folder}}",
}
# my_build.sh
qmake -project
qmake
make