forked from Bytewerk/Messwerk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
harbour-messwerk.pro
85 lines (77 loc) · 2.27 KB
/
harbour-messwerk.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
74
75
76
77
78
79
80
81
82
83
84
85
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the 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
# - translation filenames have to be changed
# The name of your application
TARGET = harbour-messwerk
CONFIG += sailfishapp
QT += sensors positioning
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_LFLAGS += -std=c++0x
SOURCES += src/Messwerk.cpp \
src/accelerometer.cpp \
src/gyroscope.cpp \
src/magnetometer.cpp \
src/sensor.cpp \
src/plotwidget.cpp \
src/rotation.cpp \
src/light.cpp \
src/proximity.cpp \
src/satelliteposwidget.cpp \
src/satelliteinfo.cpp \
src/activateable.cpp \
src/satellitestrengthwidget.cpp \
src/settings.cpp \
src/wakelock.cpp \
src/position.cpp
OTHER_FILES += qml/Messwerk.qml \
qml/cover/CoverPage.qml \
qml/pages/FirstPage.qml \
rpm/harbour-messwerk.changes.in \
rpm/harbour-messwerk.spec \
rpm/harbour-messwerk.yaml \
translations/*.ts \
harbour-messwerk.desktop \
qml/pages/InfoPage.qml \
qml/pages/MagnetPage.qml \
qml/pages/LightPage.qml \
qml/pages/GyroPage.qml \
qml/pages/AccelPage.qml \
qml/Constants.js \
qml/pages/PlotTestPage.qml \
qml/pages/RotationPage.qml \
qml/pages/SettingsDialog.qml \
qml/pages/SatellitePage.qml \
qml/pages/PositionPage.qml
# to disable building translations every time, comment out the
# following CONFIG line
CONFIG += sailfishapp_i18n
TRANSLATIONS += translations/harbour-messwerk-de.ts \
translations/harbour-messwerk-pl.ts \
translations/harbour-messwerk-sv.ts
HEADERS += \
src/accelerometer.h \
src/gyroscope.h \
src/magnetometer.h \
src/sensor.h \
src/plotwidget.h \
src/rotation.h \
src/light.h \
src/proximity.h \
src/satelliteposwidget.h \
src/satelliteinfo.h \
src/activateable.h \
src/satellitestrengthwidget.h \
src/settings.h \
src/wakelock.h \
src/position.h
# use this for harbour-compliant builds:
#DEFINES += FOR_HARBOUR
# and this for all features
LIBS += -lkeepalive