Skip to content

Latest commit

 

History

History
66 lines (54 loc) · 1.14 KB

fingerterm.pro

File metadata and controls

66 lines (54 loc) · 1.14 KB
 
1
QT = core gui qml quick
6
7
QT += feedback
DEFINES += HAVE_FEEDBACK
11
PKGCONFIG += nemonotifications-qt5
15
DEFAULT_FONT = monospace
18
DEFINES += DEFAULT_FONTFAMILY=\\\"$$DEFAULT_FONT\\\"
21
TARGET = fingerterm
22
23
24
25
26
27
28
29
30
31
32
DEPENDPATH += .
INCLUDEPATH += .
LIBS += -lutil
# Input
HEADERS += \
ptyiface.h \
terminal.h \
textrender.h \
version.h \
util.h \
35
36
37
38
SOURCES += \
main.cpp \
terminal.cpp \
textrender.cpp \
39
40
ptyiface.cpp \
util.cpp \
42
43
44
45
46
47
48
OTHER_FILES += \
qml/Main.qml \
qml/Keyboard.qml \
qml/Key.qml \
qml/Lineview.qml \
qml/Button.qml \
50
51
qml/NotifyWin.qml \
qml/UrlWindow.qml \
54
55
56
57
RESOURCES += \
resources.qrc
58
59
target.path = /usr/bin
INSTALLS += target
61
contains(MEEGO_EDITION,nemo) {
62
desktopfile.extra = cp $${TARGET}.desktop.nemo $${TARGET}.desktop
63
desktopfile.path = /usr/share/applications
64
desktopfile.files = $${TARGET}.desktop
65
66
INSTALLS += desktopfile
}