Force qmake runing
General and Desktop
5
Posts
4
Posters
3.7k
Views
1
Watching
-
@
qmake
make
@... :) You probably mean in Qt Creator, though. I don't know the answer there.
-
You could wrap everything in a little Makefile. Something like this.
Makefile
Makefile.qmake:
<tab>qmake -o $@ project.pro
<tab>${MAKE} Makefile.qmake ${MAKECMDGOALS}(you might want to set phony and default targets as well).
A+
Paul