I'm trying to use a SUBDIR qmake-project with relative subdirectories:
TEMPLATE = subdirs
SUBDIRS = app ../lib1
When QT creator build this project using "shadow build", which means in an other directory, it puts the output of the file this way:
Shadow-Build-Directory/
app/
main.obj
...
The problem is that because my subdir is relative, it uses the same relative path for the output, trying to put lib1 build in Shadow-Build-Directory/../lib1
!
How can I avoid this ?
EDIT: I'm using latest Qt 5.5.
Shadow-Build-Directory
in an empty directory, wherelib1
folder wouldn't be a problem. - Pavel Strakhov