-
Notifications
You must be signed in to change notification settings - Fork 10
/
systray.pro
43 lines (32 loc) · 897 Bytes
/
systray.pro
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
HEADERS = window.h \
lima.h \
templates.h \
instance.h
SOURCES = main.cpp \
instance.cpp \
templates.cpp \
lima.cpp \
window.cpp
RESOURCES = systray.qrc
QT += widgets
requires(qtConfig(combobox))
TARGET = lima-gui
macx: ICON = icons/tux.icns
DISTFILES += \
LICENSE
//DEFINES += QT_NO_SOURCEHIGHLITER
include(QSourceHighlite/QSourceHighlite.pri)
//DEFINES += QT_NO_EMOTICONS
include(QrwEmoticons/QrwEmoticons.pri)
//DEFINES += QT_NO_VNCCLIENT
include(QVNCClient/QVNCClient.pri)
# Enabling qtermwidget requires GPL-v2 license
#CONFIG += gpl_licensed
gpl_licensed {
win32: DEFINES += QT_NO_TERMWIDGET
unix: CONFIG += link_pkgconfig
unix: PKGCONFIG += qtermwidget5
} else {
DEFINES += QT_NO_TERMWIDGET
win32: DEFINES += QT_NO_EMOTICONS
}