blob: 81e5d1f3852c89306b7512fba31ad58efccc51a3 (
plain) (
blame)
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
36
37
38
39
40
41
42
43
44
|
Only enter the directories we want to build, otherwise we might fail due to
missing dependencies.
--- src/src.pro
+++ src/src.pro
@@ -1,37 +1,2 @@
TEMPLATE = subdirs
-
-qtHaveModule(widgets) {
- no-png {
- message("Some graphics-related tools are unavailable without PNG support")
- } else {
- SUBDIRS = assistant \
- pixeltool \
- qtestlib \
- designer
-
- linguist.depends = designer
- }
-}
-
-SUBDIRS += linguist \
- qtplugininfo
-if(!android|android_app):!ios: SUBDIRS += qtpaths
-
-mac {
- SUBDIRS += macdeployqt
-}
-
-android {
- SUBDIRS += androiddeployqt
-}
-
-qtHaveModule(dbus): SUBDIRS += qdbus
-
-win32|winrt:SUBDIRS += windeployqt
-winrt:SUBDIRS += winrtrunner
-qtHaveModule(gui):!android:!ios:!qnx:!wince*:!winrt*:SUBDIRS += qtdiag
-
-qtNomakeTools( \
- pixeltool \
- macdeployqt \
-)
+SUBDIRS = pixeltool
|