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

Last change on this file since 624 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
RevLine 
[2]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
[569]7!win32:!embedded:!mac:!symbian:!os2:CONFIG += x11
[2]8
9unix:QMAKE_PKGCONFIG_REQUIRES = QtCore
10
11include(../qbase.pri)
12
13contains(QT_CONFIG, x11sm):CONFIG += x11sm
14
[105]15# On OS/2, the debug DLL is too big and links slowly, split it to 3 pieces
[571]16os2:dll:splitDllBegin(. A B, debug, debug|release)
[105]17
[2]18#platforms
19x11:include(kernel/x11.pri)
20mac:include(kernel/mac.pri)
21win32:include(kernel/win.pri)
22embedded:include(embedded/embedded.pri)
[561]23symbian {
24 include(kernel/symbian.pri)
25 include(s60framework/s60framework.pri)
26}
[2]27
28#modules
[561]29include(animation/animation.pri)
[95]30include(kernel/kernel.pri)
31include(image/image.pri)
32include(painting/painting.pri)
33include(text/text.pri)
[561]34
[147]35os2:dll:splitDllPart(.)
[561]36
[95]37include(styles/styles.pri)
38include(widgets/widgets.pri)
[561]39
[147]40os2:dll:splitDllPart(A)
[561]41
[95]42include(dialogs/dialogs.pri)
43include(accessible/accessible.pri)
44include(itemviews/itemviews.pri)
45include(inputmethod/inputmethod.pri)
46include(graphicsview/graphicsview.pri)
47include(util/util.pri)
[561]48include(statemachine/statemachine.pri)
49include(math3d/math3d.pri)
50include(effects/effects.pri)
51
52contains(QT_CONFIG, egl): include(egl/egl.pri)
53
[571]54os2:dll:splitDllPart(B)
[561]55
[147]56os2:dll:splitDllEnd()
[105]57
[2]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
[561]67symbian:TARGET.UID3=0x2001B2DD
[2]68
[561]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.