-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathharbour-sailshotme.pro
59 lines (44 loc) · 1.77 KB
/
harbour-sailshotme.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# The name of your app.
# NOTICE: name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, following needs to be
# done to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
TARGET = harbour-sailshotme
#CONFIG += sailfishapp
DEFINES += QT_VERSION_5
# Start of temporary fix for the icon for the Nov 2013 harbour requirements by (thanks to AgileArtem :))
# QML files and folders
QT += quick qml dbus
CONFIG += link_pkgconfig
PKGCONFIG += sailfishapp
INCLUDEPATH += /usr/include/sailfishapp
TARGETPATH = /usr/bin
target.path = $$TARGETPATH
DEPLOYMENT_PATH = /usr/share/$$TARGET
qml.files = qml
qml.path = $$DEPLOYMENT_PATH
desktop.files = harbour-sailshotme.desktop
desktop.path = /usr/share/applications
icon.files = harbour-sailshotme.png
icon.path = /usr/share/icons/hicolor/86x86/apps
# moving mixpanel to harbour.wikipedia.Mixpanel location to satisfy new harbour requirements
# qml.files/path will deploy a copy to the old location, but it's ok, it's not going to be used
mixpanel.files = qml/components/Mixpanel/src/Mixpanel
mixpanel.path = $$DEPLOYMENT_PATH/qml/components/harbour/wikipedia
INSTALLS += target icon desktop mixpanel qml
# End of nov 2013 fix
SOURCES += src/harbour-sailshotme.cpp \
src/nemodbus/src/declarativedbusinterface.cpp
OTHER_FILES += qml/harbour-sailshotme.qml \
qml/cover/CoverPage.qml \
rpm/harbour-sailshotme.spec \
rpm/harbour-sailshotme.yaml \
harbour-sailshotme.desktop \
qml/pages/About.qml \
qml/pages/MainPage.qml \
src/LICENSE
HEADERS += \
src/nemodbus/src/declarativedbusinterface.h