forked from balta3/sailfish-gpsinfo
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathharbour-gpsinfo.pro
73 lines (63 loc) · 2.08 KB
/
harbour-gpsinfo.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
TARGET = harbour-gpsinfo
CONFIG += sailfishapp
CONFIG += sailfishapp_i18n
SOURCES += \
src/gpsdatasource.cpp \
src/qmlsettingswrapper.cpp \
src/gpsinfosettings.cpp \
src/harbour-gpsinfo.cpp
DISTFILES += qml/pages/CoverPage.qml \
qml/components/AboutLabel.qml \
qml/QChart/QChart.js \
qml/QChart/QChart.qml \
qml/QChart/qmldir \
qml/components/MainMenu.qml \
qml/pages/FirstPage.qml \
qml/components/InfoField.qml \
qml/pages/SatelliteBarchartPage.qml \
qml/pages/SettingsPage.qml \
qml/LocationFormatter.qml \
qml/components/Providers.qml \
qml/components/DoubleSwitch.qml \
qml/pages/AboutPage.qml \
qml/pages/LicensePage.qml \
rpm/harbour-gpsinfo.changes \
rpm/harbour-gpsinfo.spec \
harbour-gpsinfo.desktop \
qml/harbour-gpsinfo.qml \
qml/pages/SatelliteInfoPage.qml \
images/coverbg.png \
rpm/harbour-gpsinfo.yaml \
translations/harbour-gpsinfo_de.ts \
translations/harbour-gpsinfo_es.ts \
translations/harbour-gpsinfo_fi.ts \
translations/harbour-gpsinfo_fr.ts \
translations/harbour-gpsinfo_hu.ts \
translations/harbour-gpsinfo_nl.ts \
translations/harbour-gpsinfo_pl.ts \
translations/harbour-gpsinfo_ru.ts \
translations/harbour-gpsinfo_sk.ts \
translations/harbour-gpsinfo_sv.ts \
translations/harbour-gpsinfo_zh_CN.ts
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 256x256
HEADERS += \
src/gpsdatasource.h \
src/qmlsettingswrapper.h \
src/gpsinfosettings.h
QT += positioning
TRANSLATIONS += \
translations/harbour-gpsinfo_de.ts \
translations/harbour-gpsinfo_es.ts \
translations/harbour-gpsinfo_fi.ts \
translations/harbour-gpsinfo_fr.ts \
translations/harbour-gpsinfo_hu.ts \
translations/harbour-gpsinfo_nl.ts \
translations/harbour-gpsinfo_pl.ts \
translations/harbour-gpsinfo_ru.ts \
translations/harbour-gpsinfo_sk.ts \
translations/harbour-gpsinfo_sv.ts \
translations/harbour-gpsinfo_zh_CN.ts
images.files = \
images/coverbg.png
images.path = /usr/share/harbour-gpsinfo/images
INSTALLS += images