Hi ,

Before compile my program ,I need to compile a 3rd party library,but it is not writen in QT ,it has a Makefile to build itself . so if I write a pro file like this:

TEMPLATE = subdirs
SUBDIRS += image myapp

image directory is the 3rd party library,

then qmake,make
it always report "Cannot find file: image.pro"
if I write a pro file inside image, it will create a Makefile which will overwrite the original Makefile.

any suggestions?

Thanks in advance