How to add .qmlproject into subdirs .pro project?
Qt Creator and other tools
2
Posts
2
Posters
1.3k
Views
1
Watching
-
Hello!
I have folders:
@
dev_root
all.pro
app
app.pro
ext
ext.pro
ui
ui.qmlproject
@I have .pro file:
@
TEMPLATE = subdirsSUBDIRS +=
app
ext
uiext.subdir = ext
app.depends = ext
ui.depends = ext@But qmake reports an error:
@
Could not find .pro file for sub dir 'ui'
@How can I add .qmlproject into subdirs .pro project?