23
|
1 |
#
|
|
2 |
# Fix up QT_MOBILITY_SOURCE_TREE if it isn't defined
|
|
3 |
#
|
|
4 |
# Symbian MCL builds do not run configure and hence don't have
|
|
5 |
# .qmake.cache which set QT_MOBILITY_SOURCE_TREE and
|
|
6 |
# QT_MOBILITY_BUILD_TREE. Therefore we need to define a fallback.
|
|
7 |
# This has the disadvantage that shadow builds are not supported for symbian
|
|
8 |
# but they are on other platforms.
|
|
9 |
|
|
10 |
|
|
11 |
isEmpty(QT_MOBILITY_SOURCE_TREE):QT_MOBILITY_SOURCE_TREE = $$PWD
|
|
12 |
isEmpty(QT_MOBILITY_BUILD_TREE):QT_MOBILITY_BUILD_TREE = $$PWD
|
|
13 |
|
|
14 |
#now include the dynamic config
|
|
15 |
include($$QT_MOBILITY_BUILD_TREE/config.pri)
|