c++ - QMake 'subdirs' template - executing a target? -
I am putting together a build system for my QT app using a qmake .pro file which is' Uses subdiris' template. It works fine, and allows me to specify the order made for each goal, so the dependency works well, however, I have now added a tool for the project that the version number used by the main version (Build date, SVN modification, etc.) - I can build this version tool first, but when it is created, I want to create any In order to execute it more goals (this is a header file that includes the main app, including the version number.) For example, my simple qmake file looks like this : TEMPLATE = subdirs CONFIG + = ordered SUBDIRS = version \ lib \ tests \ mainapp When the 'version' was created I executed it I want to do ('passing some arguments on command) -line) before' lib 'has been created. Is it possible that anyone knows? I think Qmeck has a 'system' command that can execute the application, but I do not know how I can take ad...