summaryrefslogtreecommitdiffstats
path: root/src/src.pro
diff options
context:
space:
mode:
authorLorn Potter <lorn.potter@jollamobile.com>2013-05-09 07:51:50 +1000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-09 07:43:28 +0200
commite70d49413c9e01cfad27156c6264e627cec2a919 (patch)
tree58cba2a6aee49361ad172b7fced449531d461c64 /src/src.pro
parent701442ad6358b9f27978aafae82074124468f88c (diff)
refactor the dir structure
putting system specific files into their own directories makes it look nicer and easier to work on. Change-Id: I485640a93d8fda8d60f6e92b34834f877f19f5b6 Reviewed-by: Lorn Potter <lorn.potter@jollamobile.com>
Diffstat (limited to 'src/src.pro')
-rw-r--r--src/src.pro12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/src.pro b/src/src.pro
index 934ed9d5..41501d8c 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,10 +1,12 @@
TEMPLATE = subdirs
CONFIG += ordered
-!without-publishsubscribe: SUBDIRS += publishsubscribe
-!without-serviceframework: SUBDIRS += serviceframework
-!without-systeminfo: SUBDIRS += systeminfo # systeminfo has dependencies to serviceframework, thus build it after sfw
+!android: !ios: !blackberry {
+ !without-publishsubscribe: SUBDIRS += publishsubscribe
+ !without-serviceframework: SUBDIRS += serviceframework
+ !without-systeminfo: SUBDIRS += systeminfo
-SUBDIRS += tools
+ SUBDIRS += tools
-qtHaveModule(quick): SUBDIRS += imports
+ qtHaveModule(quick): SUBDIRS += imports
+}