Added new graphs
[harbour-pedalo.git] / harbour-pedalo.pro
1 # NOTICE:
2 #
3 # Application name defined in TARGET has a corresponding QML filename.
4 # If name defined in TARGET is changed, the following needs to be done
5 # to match new name:
6 #   - corresponding QML filename must be changed
7 #   - desktop icon filename must be changed
8 #   - desktop filename must be changed
9 #   - icon definition filename in desktop file must be changed
10 #   - translation filenames have to be changed
11
12 # The name of your application
13 TARGET = harbour-pedalo
14
15 VERSION_MAJOR = 0
16 VERSION_MINOR = 1
17 VERSION_BUILD = 1
18
19 #Target version
20 VERSION = $${VERSION_MAJOR}.$${VERSION_MINOR}-$${VERSION_BUILD}
21
22 DEFINES += "VERSION_MAJOR=$$VERSION_MAJOR" \
23     "VERSION_MINOR=$$VERSION_MINOR" \
24     "VERSION_BUILD=$$VERSION_BUILD" \
25     "VERSION=\\\"$$VERSION\\\""
26
27 CONFIG += sailfishapp
28 PKGCONFIG += mlite5
29 B
30 SOURCES += src/harbour-pedalo.cpp \
31     src/journey.cpp \
32     src/journeymodel.cpp \
33     src/status.cpp \
34     src/settings.cpp \
35     src/imageprovider.cpp \
36     src/graph.cpp \
37     src/statsmodel.cpp \
38     src/stats.cpp \
39     src/statsweekdayave.cpp \
40     src/statsweekdaycongestion.cpp \
41     src/statshourcongestion.cpp \
42     src/statshourjourneys.cpp
43
44 DISTFILES += qml/harbour-pedalo.qml \
45     qml/cover/CoverPage.qml \
46     rpm/harbour-pedalo.spec \
47     rpm/harbour-pedalo.yaml \
48     translations/*.ts \
49     harbour-pedalo.desktop \
50     qml/pages/MainPage.qml \
51     qml/pages/Stats.qml \
52     qml/pages/JourneyList.qml \
53     qml/pages/About.qml \
54     qml/pages/DurationEditDialog.qml \
55     qml/components/InfoRow.qml \
56     qml/pages/JourneyEdit.qml \
57     qml/pages/JourneyInfo.qml \
58     qml/components/BarButton.qml \
59     qml/cover/ClockView.qml \
60     qml/cover/LargeItem.qml \
61     qml/pages/TheRules.qml \
62     rpm/harbour-pedalo.changes.run.in \
63     rpm/harbour-pedalo.changes
64
65 SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 256x256
66
67 # to disable building translations every time, comment out the
68 # following CONFIG line
69 CONFIG += sailfishapp_i18n
70
71 # German translation is enabled as an example. If you aren't
72 # planning to localize your app, remember to comment out the
73 # following TRANSLATIONS line. And also do not forget to
74 # modify the localized app name in the the .desktop file.
75 TRANSLATIONS += translations/harbour-pedalo-de.ts
76
77 HEADERS += \
78     src/journey.h \
79     src/journeymodel.h \
80     src/status.h \
81     src/settings.h \
82     src/harbour-pedalo.h \
83     src/imageprovider.h \
84     src/graph.h \
85     src/statsmodel.h \
86     src/stats.h \
87     src/statsweekdayave.h \
88     src/statsweekdaycongestion.h \
89     src/statshourcongestion.h \
90     src/statshourjourneys.h