source: trunk/src/gui/util/util.pri@ 769

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

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

File size: 1.1 KB
Line 
1# Qt util module
2
3HEADERS += \
4 util/qsystemtrayicon.h \
5 util/qcompleter.h \
6 util/qcompleter_p.h \
7 util/qdesktopservices.h \
8 util/qsystemtrayicon_p.h \
9 util/qundogroup.h \
10 util/qundostack.h \
11 util/qundostack_p.h \
12 util/qundoview.h
13
14SOURCES += \
15 util/qsystemtrayicon.cpp \
16 util/qcompleter.cpp \
17 util/qdesktopservices.cpp \
18 util/qundogroup.cpp \
19 util/qundostack.cpp \
20 util/qundoview.cpp
21
22
23wince* {
24 SOURCES += \
25 util/qsystemtrayicon_wince.cpp
26} else:win32 {
27 SOURCES += \
28 util/qsystemtrayicon_win.cpp
29}
30
31os2 {
32 SOURCES += \
33 util/qsystemtrayicon_pm.cpp \
34 ../3rdparty/os2/xsystray/xsystray_api.c
35 INCLUDEPATH += \
36 ../3rdparty/os2/xsystray
37}
38
39unix:x11 {
40 SOURCES += \
41 util/qsystemtrayicon_x11.cpp
42}
43
44embedded {
45 SOURCES += \
46 util/qsystemtrayicon_qws.cpp
47}
48
49!embedded:!x11:mac {
50 OBJECTIVE_SOURCES += util/qsystemtrayicon_mac.mm
51}
52
53symbian {
54 LIBS += -lsendas2 -letext -lapmime
55 contains(QT_CONFIG, s60): LIBS += -lplatformenv -lCommonUI
56}
Note: See TracBrowser for help on using the repository browser.