How to show nested pri files in project pane of Qt Creator? -
this question has answer here:
i have .pri
file named deploy.pri
in project .pro
file.
deploy.pri :
include(part1.pri) include(part2.pri)
as see includes 2 other .pri
files.
these pri files displayed in qt creator project pane in same level :
i want know if there way show them nested , in hierarchical way tree?
first nest modules subdirs
.
template = subdirs subdirs += project1 \ project2
then include part1.pri
, part2.pri
using ../
depending on depth of subdirectories include(../part1.pri)
Comments
Post a Comment