Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force QtCreator to run "qmake" when building

In some of my projects I use some pre-build step(s) configured in the .pro file. So qmake will execute this step whenever it is activated.

Now in QtCreator, when I build (also when completely rebuilding the whole project), it doesn't always run qmake, since it tries to be clever and optimize this. It only runs it when the .pro file has been changed, causing several issues.

Also a common issue is, when you make a class inheriting from QObject after running qmake on that file, it will not notice it and hence not run moc on it. Such issues are solved by simply manually running qmake via the "Build" menu in QtCreator. But if I forget this I am sometimes confused by the compile errors I get because of this and this is really annoying.

(How) can I force QtCreator to do this step always when building a project?

I thought about adding qmake as a build step in the project configuration, but this seems to be a dirty hack to solve this problem.

like image 698
leemes Avatar asked Oct 13 '12 13:10

leemes


Video Answer


2 Answers

Another dirty hack but a little more flexible: On Linux/Mac add "touch yourprojectfile.pro" as a build step or assign an external tool call to sth. like touch "*.pro" run in your current projects working directory. When the pro file is altered (which is mimicked by touch) qmake is executed. Not much cleaner but the external tool plus hotkey solution is more flexible than adding qmake into the buildsteps of each an every project.

Update: I finally found a completely satisfactory solution for this. In the pro file add:

  qmakeforce.target = dummy
  qmakeforce.commands = rm -f Makefile ##to force rerun of qmake
  qmakeforce.depends = FORCE
  PRE_TARGETDEPS += $$qmakeforce.target
  QMAKE_EXTRA_TARGETS += qmakeforce

This deletes the generated Makefile an thus forces qmake to rerun for every build.

like image 106
Martin Avatar answered Sep 28 '22 06:09

Martin


I think your best option is customize your QtCreator .This can be done by write a plugin for QtCreator ,or you can change the souce code of a plugin named Qt4ProjectManager ,then build it for yourself . This might be complex ,however, can be a solution.

like image 27
tangbongbong Avatar answered Sep 28 '22 06:09

tangbongbong