blob: a695e429c47f03f3a52083d062e6516dfe1abdf0 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
TARGET = rockpool
include(../version.pri)
QT += qml quick dbus webkit quick-private webkit-private
CONFIG += c++11
CONFIG += sailfishapp
HEADERS += \
notificationsourcemodel.h \
servicecontrol.h \
pebble.h \
pebbles.h \
applicationsmodel.h \
applicationsfiltermodel.h \
appstoreclient.h \
screenshotmodel.h
SOURCES += main.cpp \
notificationsourcemodel.cpp \
servicecontrol.cpp \
pebble.cpp \
pebbles.cpp \
applicationsmodel.cpp \
applicationsfiltermodel.cpp \
appstoreclient.cpp \
screenshotmodel.cpp
RESOURCES += rockwork.qrc
QML_FILES += $$files(qml/*.qml,true)
CONF_FILES += rockpool.png \
rockpool.desktop
#show all the files in QtCreator
OTHER_FILES += $${QML_FILES} \
$${CONF_FILES}
#specify where the qml files are installed to
qml.path = /usr/share/rockpool/qml
qml.files += $${QML_FILES}
INSTALLS+=qml
#and the app icon
icon.path = /usr/share/icons/hicolor/86x86/apps/
icon.files = rockpool.png
INSTALLS+=icon
# Default rules for deployment.
INSTALLS+=target icon
target.path = /usr/bin
|