1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
TEMPLATE=subdirs
SUBDIRS=\
linguist \
qdoc \
qtattributionsscanner \
qhelpcontentmodel \
qhelpenginecore \
qhelpgenerator \
qhelpindexmodel \
qhelpprojectdata \
cmake \
installed_cmake \
qtdiag \
windeployqt \
macdeployqt
installed_cmake.depends = cmake
# These tests don't make sense for cross-compiled builds
cross_compile:SUBDIRS -= linguist qdoc qtattributionsscanner windeployqt qhelpgenerator qtdiag
# Tests that might make sense, but currently use SRCDIR
cross_compile:SUBDIRS -= qhelpcontentmodel qhelpenginecore qhelpindexmodel qhelpprojectdata
# These tests need the QtHelp module
!qtHaveModule(help): SUBDIRS -= \
qhelpcontentmodel \
qhelpenginecore \
qhelpgenerator \
qhelpindexmodel \
qhelpprojectdata \
!qtConfig(process): SUBDIRS -= qtattributionsscanner linguist qtdiag windeployqt macdeployqt
!win32|winrt: SUBDIRS -= windeployqt
!macos: SUBDIRS -= macdeployqt
|