Hi,
I have a simple subdirs projects like:
TEMPLATE = subdirs
CONFIG = ordered
SUBDIRS = base
SUBDIRS += depend
Every project has a install path and I have added the make install command under the Projects tab.
When I start a build from QtCreator for this project the following order appears:
make base
make depend
make install base
make install depend
As result step 2 (make depend) end with a link error because base.lib is not installed. I have to build base manually and than it is installed and all works. The problem is:
manually work
first time depend is linked against the last (not actually) base lib
Can I change the make order to?
make base
make base install
make depend
make depend install
Thanks for every hint solving this problem. I use QtCreator 3.0.0.
Steffen
↧