blob: e628229f0cb7ecbf0c342ba727e88c618938be2d (
plain)
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
|
# Qt util module
HEADERS += \
util/qsystemtrayicon.h \
util/qcompleter.h \
util/qcompleter_p.h \
util/qdesktopservices.h \
util/qsystemtrayicon_p.h \
util/qundogroup.h \
util/qundostack.h \
util/qundostack_p.h \
util/qundoview.h
SOURCES += \
util/qsystemtrayicon.cpp \
util/qcompleter.cpp \
util/qdesktopservices.cpp \
util/qundogroup.cpp \
util/qundostack.cpp \
util/qundoview.cpp
win32 {
SOURCES += \
util/qsystemtrayicon_win.cpp
}
unix:x11 {
SOURCES += \
util/qsystemtrayicon_x11.cpp
}
embedded {
SOURCES += \
util/qsystemtrayicon_qws.cpp
}
!embedded:!x11:mac {
OBJECTIVE_SOURCES += util/qsystemtrayicon_mac.mm
}
|