X-Git-Url: https://www.flypig.org.uk/git/?p=harbour-pedalo.git;a=blobdiff_plain;f=harbour-pedalo.pro;h=1ec2cedba3ab217a83bf259eec1383b5cda862d9;hp=d1a3f1b1cf33db444fc9b5b4b3fab297ded67b13;hb=badbb9139e0e5b3bc114ae7c150e6d9ab5183566;hpb=371dcf3335b355f8d421352a394161dc6d9b9f24 diff --git a/harbour-pedalo.pro b/harbour-pedalo.pro index d1a3f1b..1ec2ced 100644 --- a/harbour-pedalo.pro +++ b/harbour-pedalo.pro @@ -12,12 +12,25 @@ # The name of your application TARGET = harbour-pedalo +VERSION_MAJOR = 0 +VERSION_MINOR = 1 +VERSION_BUILD = 1 + +#Target version +VERSION = $${VERSION_MAJOR}.$${VERSION_MINOR}-$${VERSION_BUILD} + +DEFINES += "VERSION_MAJOR=$$VERSION_MAJOR" \ + "VERSION_MINOR=$$VERSION_MINOR" \ + "VERSION_BUILD=$$VERSION_BUILD" \ + "VERSION=\\\"$$VERSION\\\"" + CONFIG += sailfishapp SOURCES += src/harbour-pedalo.cpp \ src/journey.cpp \ src/journeymodel.cpp \ - src/status.cpp + src/status.cpp \ + src/settings.cpp DISTFILES += qml/harbour-pedalo.qml \ qml/cover/CoverPage.qml \ @@ -32,6 +45,7 @@ DISTFILES += qml/harbour-pedalo.qml \ qml/pages/Stats.qml \ qml/pages/JourneyList.qml \ qml/pages/About.qml \ + qml/pages/DurationEditDialog.qml \ qml/components/InfoRow.qml SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 @@ -49,4 +63,6 @@ TRANSLATIONS += translations/harbour-pedalo-de.ts HEADERS += \ src/journey.h \ src/journeymodel.h \ - src/status.h + src/status.h \ + src/settings.h \ + src/harbour-pedalo.h