qmake won't "run" anything for you. I'm using a simple script to do that.
bash Code:
#!/bin/sh for i in 1 2 3 model do cd test$i ./test$i cd .. doneTo copy to clipboard, switch view to plain text mode
test1, test2, test3 and testmodel are my tests.
You need to include "main.moc" only if there is a Q_OBJECT macro in the main.cpp file.
Bookmarks