Improve journey info page layout
[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
29 SOURCES += src/harbour-pedalo.cpp \
30     src/journey.cpp \
31     src/journeymodel.cpp \
32     src/status.cpp \
33     src/settings.cpp
34
35 DISTFILES += qml/harbour-pedalo.qml \
36     qml/cover/CoverPage.qml \
37     rpm/harbour-pedalo.changes.in \
38     rpm/harbour-pedalo.changes.run.in \
39     rpm/harbour-pedalo.spec \
40     rpm/harbour-pedalo.yaml \
41     translations/*.ts \
42     harbour-pedalo.desktop \
43     qml/pages/MainPage.qml \
44     qml/pages/Stats.qml \
45     qml/pages/JourneyList.qml \
46     qml/pages/About.qml \
47     qml/pages/DurationEditDialog.qml \
48     qml/components/InfoRow.qml \
49     qml/pages/JourneyEdit.qml \
50     qml/pages/JourneyInfo.qml
51
52 SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
53
54 # to disable building translations every time, comment out the
55 # following CONFIG line
56 CONFIG += sailfishapp_i18n
57
58 # German translation is enabled as an example. If you aren't
59 # planning to localize your app, remember to comment out the
60 # following TRANSLATIONS line. And also do not forget to
61 # modify the localized app name in the the .desktop file.
62 TRANSLATIONS += translations/harbour-pedalo-de.ts
63
64 HEADERS += \
65     src/journey.h \
66     src/journeymodel.h \
67     src/status.h \
68     src/settings.h \
69     src/harbour-pedalo.h