Add support for accessibility actions.
[profile/ivi/qtbase.git] / qtbase.pro
1 #####################################################################
2 # Main projectfile
3 #####################################################################
4
5 CONFIG += ordered
6 TEMPLATE = subdirs
7
8 cross_compile: CONFIG += nostrip
9
10 module_qtbase_tests.subdir = tests
11 module_qtbase_tests.target = module-qtbase-tests
12 module_qtbase_tests.depends = module_qtbase_src
13 module_qtbase_tests.CONFIG = no_default_install
14
15 #process the projects
16 PROJECTS=$$eval($$list($$lower($$unique(QT_BUILD_PARTS))))
17 # note that the order matters for these blocks!
18 contains(PROJECTS, qmake) {
19     PROJECTS -= qmake
20     # nothing to be done
21 }
22 contains(PROJECTS, libs) {
23     PROJECTS -= libs
24     include(src/src.pro)
25 }
26 contains(PROJECTS, examples) {
27     PROJECTS -= examples
28     SUBDIRS += examples
29 }
30 contains(PROJECTS, tests) {
31     PROJECTS -= tests
32     SUBDIRS += module_qtbase_tests
33 }
34 !isEmpty(PROJECTS) {
35     message(Unknown PROJECTS: $$PROJECTS)
36 }
37
38 !symbian: confclean.depends += clean
39 confclean.commands =
40 unix:!symbian {
41   confclean.commands += (cd config.tests/unix/stl && $(MAKE) distclean); \
42                         (cd config.tests/unix/endian && $(MAKE) distclean); \
43                         (cd config.tests/unix/ipv6 && $(MAKE) distclean); \
44                         (cd config.tests/unix/largefile && $(MAKE) distclean); \
45                         (cd config.tests/unix/ptrsize && $(MAKE) distclean); \
46                         (cd config.tests/x11/notype && $(MAKE) distclean); \
47                         (cd config.tests/unix/getaddrinfo && $(MAKE) distclean); \
48                         (cd config.tests/unix/cups && $(MAKE) distclean); \
49                         (cd config.tests/unix/psql && $(MAKE) distclean); \
50                         (cd config.tests/unix/mysql && $(MAKE) distclean); \
51                         (cd config.tests/unix/mysql_r && $(MAKE) distclean); \
52                         (cd config.tests/unix/nis && $(MAKE) distclean); \
53                         (cd config.tests/unix/nix && $(MAKE) distclean); \
54                         (cd config.tests/unix/iodbc && $(MAKE) distclean); \
55                         (cd config.tests/unix/odbc && $(MAKE) distclean); \
56                         (cd config.tests/unix/oci && $(MAKE) distclean); \
57                         (cd config.tests/unix/tds && $(MAKE) distclean); \
58                         (cd config.tests/unix/db2 && $(MAKE) distclean); \
59                         (cd config.tests/unix/ibase && $(MAKE) distclean); \
60                         (cd config.tests/unix/ipv6ifname && $(MAKE) distclean); \
61                         (cd config.tests/unix/zlib && $(MAKE) distclean); \
62                         (cd config.tests/unix/libmng && $(MAKE) distclean); \
63                         (cd config.tests/unix/sqlite2 && $(MAKE) distclean); \
64                         (cd config.tests/unix/libjpeg && $(MAKE) distclean); \
65                         (cd config.tests/unix/libpng && $(MAKE) distclean); \
66                         (cd config.tests/x11/xcursor && $(MAKE) distclean); \
67                         (cd config.tests/x11/xrender && $(MAKE) distclean); \
68                         (cd config.tests/x11/xrandr && $(MAKE) distclean); \
69                         (cd config.tests/x11/xkb && $(MAKE) distclean); \
70                         (cd config.tests/x11/xinput && $(MAKE) distclean); \
71                         (cd config.tests/x11/fontconfig && $(MAKE) distclean); \
72                         (cd config.tests/x11/xinerama && $(MAKE) distclean); \
73                         (cd config.tests/x11/sm && $(MAKE) distclean); \
74                         (cd config.tests/x11/xshape && $(MAKE) distclean); \
75                         (cd config.tests/x11/opengl && $(MAKE) distclean); \
76                         $(DEL_FILE) config.tests/.qmake.cache; \
77                         $(DEL_FILE) src/corelib/global/qconfig.h; \
78                         $(DEL_FILE) src/corelib/global/qconfig.cpp; \
79                         $(DEL_FILE) mkspecs/qconfig.pri; \
80                         $(DEL_FILE) mkspecs/qmodule.pri; \
81                         $(DEL_FILE) .qmake.cache; \
82                         (cd qmake && $(MAKE) distclean);
83 }
84 win32 {
85   confclean.commands += -$(DEL_FILE) src\\corelib\\global\\qconfig.h $$escape_expand(\\n\\t) \
86                         -$(DEL_FILE) src\\corelib\\global\\qconfig.cpp $$escape_expand(\\n\\t) \
87                         -$(DEL_FILE) mkspecs\\qconfig.pri $$escape_expand(\\n\\t) \
88                         -$(DEL_FILE) mkspecs\\qmodule.pri $$escape_expand(\\n\\t) \
89                         -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \
90                         (cd qmake && $(MAKE) distclean)
91 }
92 symbian {
93   confclean.depends += distclean
94   contains(QMAKE_HOST.os, "Windows") {
95     confclean.commands += \
96             (cd src\\tools\\moc && $(MAKE) distclean) $$escape_expand(\\n\\t) \
97             (cd src\\tools\\rcc && $(MAKE) distclean) $$escape_expand(\\n\\t) \
98             (cd src\\tools\\uic && $(MAKE) distclean) $$escape_expand(\\n\\t) \
99             -$(DEL_FILE) src\\corelib\\global\\qconfig.h $$escape_expand(\\n\\t) \
100             -$(DEL_FILE) src\\corelib\\global\\qconfig.cpp $$escape_expand(\\n\\t) \
101             -$(DEL_FILE) mkspecs\\qconfig.pri $$escape_expand(\\n\\t) \
102             -$(DEL_FILE) mkspecs\\qmodule.pri $$escape_expand(\\n\\t) \
103             -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \
104             (cd qmake && $(MAKE) distclean)
105   } else {
106     confclean.commands += \
107             (cd src/tools/moc && $(MAKE) distclean) $$escape_expand(\\n\\t) \
108             (cd src/tools/rcc && $(MAKE) distclean) $$escape_expand(\\n\\t) \
109             (cd src/tools/uic && $(MAKE) distclean) $$escape_expand(\\n\\t) \
110             -$(DEL_FILE) src/corelib/global/qconfig.h $$escape_expand(\\n\\t) \
111             -$(DEL_FILE) src/corelib/global/qconfig.cpp $$escape_expand(\\n\\t) \
112             -$(DEL_FILE) mkspecs/qconfig.pri $$escape_expand(\\n\\t) \
113             -$(DEL_FILE) mkspecs/qmodule.pri $$escape_expand(\\n\\t) \
114             -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \
115             (cd qmake && $(MAKE) distclean)
116   }
117 }
118 QMAKE_EXTRA_TARGETS += confclean
119 qmakeclean.commands += (cd qmake && $(MAKE) clean)
120 QMAKE_EXTRA_TARGETS += qmakeclean
121 CLEAN_DEPS += qmakeclean
122
123 CONFIG -= qt
124
125 ### installations ####
126
127 #qmake
128 qmake.path=$$[QT_INSTALL_BINS]
129 win32 {
130    qmake.files=$$QT_BUILD_TREE/bin/qmake.exe
131 } else {
132    qmake.files=$$QT_BUILD_TREE/bin/qmake
133 }
134 INSTALLS += qmake
135
136 #syncqt
137 syncqt.path=$$[QT_INSTALL_BINS]
138 syncqt.files=$$QT_BUILD_TREE/bin/syncqt
139 win32:syncqt.files=$$QT_BUILD_TREE/bin/syncqt.bat
140 INSTALLS += syncqt
141
142 #qtmodule-configtests
143 configtests.path=$$[QT_INSTALL_BINS]
144 configtests.files=$$QT_BUILD_TREE/bin/qtmodule-configtests
145 INSTALLS += configtests
146
147 #mkspecs
148 mkspecs.path=$$[QT_INSTALL_DATA]/mkspecs
149 mkspecs.files=$$QT_BUILD_TREE/mkspecs/qconfig.pri $$QT_BUILD_TREE/mkspecs/qmodule.pri $$files($$QT_SOURCE_TREE/mkspecs/*)
150 mkspecs.files -= $$QT_SOURCE_TREE/mkspecs/modules
151 unix { 
152    DEFAULT_QMAKESPEC = $$QMAKESPEC
153    DEFAULT_QMAKESPEC ~= s,^.*mkspecs/,,g
154    mkspecs.commands += $(DEL_FILE) $(INSTALL_ROOT)$$mkspecs.path/default; $(SYMLINK) $$DEFAULT_QMAKESPEC $(INSTALL_ROOT)$$mkspecs.path/default
155    mkspecs.files -= $$QT_SOURCE_TREE/mkspecs/default
156 }
157 win32:!equals(QT_BUILD_TREE, $$QT_SOURCE_TREE) {
158     # When shadow building on Windows, the default mkspec only exists in the build tree.
159     mkspecs.files += $$QT_BUILD_TREE/mkspecs/default
160 }
161 INSTALLS += mkspecs