Remove dummy impl. of shared graphics cache in XCB plugin
[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 confclean.depends += clean
39 confclean.commands =
40 unix {
41   confclean.commands += (cd config.tests/unix/stl && $(MAKE) distclean); \
42                         (cd config.tests/unix/ptrsize && $(MAKE) distclean); \
43                         (cd config.tests/x11/notype && $(MAKE) distclean); \
44                         (cd config.tests/unix/getaddrinfo && $(MAKE) distclean); \
45                         (cd config.tests/unix/cups && $(MAKE) distclean); \
46                         (cd config.tests/unix/psql && $(MAKE) distclean); \
47                         (cd config.tests/unix/mysql && $(MAKE) distclean); \
48                         (cd config.tests/unix/mysql_r && $(MAKE) distclean); \
49                         (cd config.tests/unix/nis && $(MAKE) distclean); \
50                         (cd config.tests/unix/iodbc && $(MAKE) distclean); \
51                         (cd config.tests/unix/odbc && $(MAKE) distclean); \
52                         (cd config.tests/unix/oci && $(MAKE) distclean); \
53                         (cd config.tests/unix/tds && $(MAKE) distclean); \
54                         (cd config.tests/unix/db2 && $(MAKE) distclean); \
55                         (cd config.tests/unix/ibase && $(MAKE) distclean); \
56                         (cd config.tests/unix/ipv6ifname && $(MAKE) distclean); \
57                         (cd config.tests/unix/zlib && $(MAKE) distclean); \
58                         (cd config.tests/unix/sqlite2 && $(MAKE) distclean); \
59                         (cd config.tests/unix/libjpeg && $(MAKE) distclean); \
60                         (cd config.tests/unix/libpng && $(MAKE) distclean); \
61                         (cd config.tests/x11/xcursor && $(MAKE) distclean); \
62                         (cd config.tests/x11/xrender && $(MAKE) distclean); \
63                         (cd config.tests/x11/xrandr && $(MAKE) distclean); \
64                         (cd config.tests/x11/xkb && $(MAKE) distclean); \
65                         (cd config.tests/x11/xinput && $(MAKE) distclean); \
66                         (cd config.tests/x11/fontconfig && $(MAKE) distclean); \
67                         (cd config.tests/x11/xinerama && $(MAKE) distclean); \
68                         (cd config.tests/x11/sm && $(MAKE) distclean); \
69                         (cd config.tests/x11/xshape && $(MAKE) distclean); \
70                         (cd config.tests/x11/opengl && $(MAKE) distclean); \
71                         $(DEL_FILE) config.tests/.qmake.cache; \
72                         $(DEL_FILE) src/corelib/global/qconfig.h; \
73                         $(DEL_FILE) src/corelib/global/qconfig.cpp; \
74                         $(DEL_FILE) mkspecs/qconfig.pri; \
75                         $(DEL_FILE) mkspecs/qmodule.pri; \
76                         $(DEL_FILE) .qmake.cache; \
77                         (cd qmake && $(MAKE) distclean);
78 }
79 win32 {
80   confclean.commands += -$(DEL_FILE) src\\corelib\\global\\qconfig.h $$escape_expand(\\n\\t) \
81                         -$(DEL_FILE) src\\corelib\\global\\qconfig.cpp $$escape_expand(\\n\\t) \
82                         -$(DEL_FILE) mkspecs\\qconfig.pri $$escape_expand(\\n\\t) \
83                         -$(DEL_FILE) mkspecs\\qmodule.pri $$escape_expand(\\n\\t) \
84                         -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \
85                         (cd qmake && $(MAKE) distclean)
86 }
87 QMAKE_EXTRA_TARGETS += confclean
88 qmakeclean.commands += (cd qmake && $(MAKE) clean)
89 QMAKE_EXTRA_TARGETS += qmakeclean
90 CLEAN_DEPS += qmakeclean
91
92 CONFIG -= qt
93
94 ### installations ####
95
96 #qmake
97 qmake.path = $$[QT_HOST_BINS]
98 win32 {
99    qmake.files = $$OUT_PWD/bin/qmake.exe
100 } else {
101    qmake.files = $$OUT_PWD/bin/qmake
102 }
103 INSTALLS += qmake
104
105 #syncqt
106 syncqt.path = $$[QT_HOST_BINS]
107 syncqt.files = $$OUT_PWD/bin/syncqt
108 win32:syncqt.files = $$OUT_PWD/bin/syncqt.bat
109 INSTALLS += syncqt
110
111 #qtmodule-configtests
112 configtests.path = $$[QT_HOST_BINS]
113 configtests.files = $$PWD/bin/qtmodule-configtests
114 INSTALLS += configtests
115
116 #mkspecs
117 mkspecs.path = $$[QT_HOST_DATA]/mkspecs
118 mkspecs.files = $$OUT_PWD/mkspecs/qconfig.pri $$OUT_PWD/mkspecs/qmodule.pri $$files($$PWD/mkspecs/*)
119 mkspecs.files -= $$PWD/mkspecs/modules
120 unix { 
121    DEFAULT_QMAKESPEC = $$QMAKESPEC
122    DEFAULT_QMAKESPEC ~= s,^.*mkspecs/,,g
123    mkspecs.commands += $(DEL_FILE) $(INSTALL_ROOT)$$mkspecs.path/default; $(SYMLINK) $$DEFAULT_QMAKESPEC $(INSTALL_ROOT)$$mkspecs.path/default
124    mkspecs.files -= $$PWD/mkspecs/default
125 }
126 win32:!equals(OUT_PWD, $$PWD) {
127     # When shadow building on Windows, the default mkspec only exists in the build tree.
128     mkspecs.files += $$OUT_PWD/mkspecs/default
129 }
130 INSTALLS += mkspecs
131
132 OTHER_FILES += \
133     configure \
134     header.BSD \
135     header.FDL \
136     header.LGPL \
137     header.LGPL-ONLY \
138     sync.profile