source: trunk/src/gui/gui.pro@ 603

Last change on this file since 603 was 571, checked in by Dmitry A. Kuminov, 15 years ago

gui: Back to 3-DLL setup in debug mode as it gives more balanced yet functioning DLLs.

File size: 1.7 KB
Line 
1TARGET = QtGui
2QPRO_PWD = $$PWD
3QT = core
4DEFINES += QT_BUILD_GUI_LIB QT_NO_USING_NAMESPACE
5win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x65000000
6
7!win32:!embedded:!mac:!symbian:!os2:CONFIG += x11
8
9unix:QMAKE_PKGCONFIG_REQUIRES = QtCore
10
11include(../qbase.pri)
12
13contains(QT_CONFIG, x11sm):CONFIG += x11sm
14
15# On OS/2, the debug DLL is too big and links slowly, split it to 3 pieces
16os2:dll:splitDllBegin(. A B, debug, debug|release)
17
18#platforms
19x11:include(kernel/x11.pri)
20mac:include(kernel/mac.pri)
21win32:include(kernel/win.pri)
22embedded:include(embedded/embedded.pri)
23symbian {
24 include(kernel/symbian.pri)
25 include(s60framework/s60framework.pri)
26}
27
28#modules
29include(animation/animation.pri)
30include(kernel/kernel.pri)
31include(image/image.pri)
32include(painting/painting.pri)
33include(text/text.pri)
34
35os2:dll:splitDllPart(.)
36
37include(styles/styles.pri)
38include(widgets/widgets.pri)
39
40os2:dll:splitDllPart(A)
41
42include(dialogs/dialogs.pri)
43include(accessible/accessible.pri)
44include(itemviews/itemviews.pri)
45include(inputmethod/inputmethod.pri)
46include(graphicsview/graphicsview.pri)
47include(util/util.pri)
48include(statemachine/statemachine.pri)
49include(math3d/math3d.pri)
50include(effects/effects.pri)
51
52contains(QT_CONFIG, egl): include(egl/egl.pri)
53
54os2:dll:splitDllPart(B)
55
56os2:dll:splitDllEnd()
57
58embedded: QT += network
59
60QMAKE_LIBS += $$QMAKE_LIBS_GUI
61
62contains(DEFINES,QT_EVAL):include($$QT_SOURCE_TREE/src/corelib/eval.pri)
63
64QMAKE_DYNAMIC_LIST_FILE = $$PWD/QtGui.dynlist
65
66DEFINES += Q_INTERNAL_QAPP_SRC
67symbian:TARGET.UID3=0x2001B2DD
68
69# ro-section in gui can exceed default allocated space, so more rw-section little further
70symbian-sbsv2: QMAKE_LFLAGS.ARMCC += --rw-base 0x800000"
Note: See TracBrowser for help on using the repository browser.