Skip to content

Latest commit

 

History

History
78 lines (67 loc) · 1.61 KB

fingerterm.pro

File metadata and controls

78 lines (67 loc) · 1.61 KB
 
Jul 22, 2013
Jul 22, 2013
1
QT = core gui qml quick dbus
Feb 20, 2013
Feb 20, 2013
2
3
4
5
6
7
contains(MEEGO_EDITION,harmattan): {
CONFIG += meegotouch
}
TEMPLATE = app
Jun 16, 2013
Jun 16, 2013
8
TARGET = fingerterm
Feb 20, 2013
Feb 20, 2013
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
44
45
46
47
48
49
50
51
DEPENDPATH += .
INCLUDEPATH += .
LIBS += -lutil
system($$PWD/updateversion.sh)
# Input
HEADERS += \
ptyiface.h \
terminal.h \
textrender.h \
version.h \
util.h \
keyloader.h \
mainwindow.h \
dbusadaptor.h
SOURCES += main.cpp terminal.cpp textrender.cpp \
ptyiface.cpp \
util.cpp \
keyloader.cpp \
mainwindow.cpp \
dbusadaptor.cpp
OTHER_FILES += \
qml/Main.qml \
qml/Keyboard.qml \
qml/Key.qml \
qml/Lineview.qml \
qtc_packaging/debian_harmattan/rules \
qtc_packaging/debian_harmattan/copyright \
qtc_packaging/debian_harmattan/control \
qtc_packaging/debian_harmattan/compat \
qtc_packaging/debian_harmattan/changelog \
qml/Button.qml \
qml/Menu.qml \
qml/NotifyWin.qml \
qml/UrlWindow.qml \
qml/LayoutWindow.qml
RESOURCES += \
resources.qrc
unix:!symbian:!maemo5 {
Jun 16, 2013
Jun 16, 2013
52
target.path = /usr/bin
Feb 20, 2013
Feb 20, 2013
53
54
55
56
INSTALLS += target
}
maemo5 {
Jun 16, 2013
Jun 16, 2013
57
target.path = /usr/bin
Feb 20, 2013
Feb 20, 2013
58
59
60
61
INSTALLS += target
}
contains(MEEGO_EDITION,harmattan) {
Jun 16, 2013
Jun 16, 2013
62
desktopfile.files = $${TARGET}.desktop
Feb 20, 2013
Feb 20, 2013
63
64
65
66
67
68
69
70
71
72
desktopfile.path = /usr/share/applications
INSTALLS += desktopfile
}
contains(MEEGO_EDITION,harmattan) {
icon.files = fingerterm.png
icon.path = /usr/share/icons/hicolor/80x80/apps
INSTALLS += icon
}
Mar 3, 2013
Mar 3, 2013
73
contains(MEEGO_EDITION,nemo) {
Jun 16, 2013
Jun 16, 2013
74
desktopfile.extra = cp $${TARGET}.desktop.nemo $${TARGET}.desktop
Mar 3, 2013
Mar 3, 2013
75
desktopfile.path = /usr/share/applications
Jun 16, 2013
Jun 16, 2013
76
desktopfile.files = $${TARGET}.desktop
Mar 3, 2013
Mar 3, 2013
77
78
INSTALLS += desktopfile
}