X-Git-Url: https://www.flypig.org.uk/git/?p=harbour-pedalo.git;a=blobdiff_plain;f=harbour-pedalo.pro;h=e50d930ff53e0004404f339b5b601f5146c03eeb;hp=62d08f9e78d1ca6734d212b40d264546f3803e53;hb=41bb8de4779e59d272f753bc53033bd467bff811;hpb=47437fad453dab96a7bd28ffd0584a7c1fda4881 diff --git a/harbour-pedalo.pro b/harbour-pedalo.pro index 62d08f9..e50d930 100644 --- a/harbour-pedalo.pro +++ b/harbour-pedalo.pro @@ -12,20 +12,42 @@ # 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 +SOURCES += src/harbour-pedalo.cpp \ + src/journey.cpp \ + src/journeymodel.cpp \ + src/status.cpp \ + src/settings.cpp DISTFILES += qml/harbour-pedalo.qml \ qml/cover/CoverPage.qml \ - qml/pages/FirstPage.qml \ - qml/pages/SecondPage.qml \ rpm/harbour-pedalo.changes.in \ rpm/harbour-pedalo.changes.run.in \ rpm/harbour-pedalo.spec \ rpm/harbour-pedalo.yaml \ translations/*.ts \ - harbour-pedalo.desktop + harbour-pedalo.desktop \ + qml/pages/MainPage.qml \ + qml/pages/Stats.qml \ + qml/pages/JourneyList.qml \ + qml/pages/About.qml \ + qml/pages/DurationEditDialog.qml \ + qml/components/InfoRow.qml \ + qml/pages/JourneyEdit.qml \ + qml/pages/JourneyInfo.qml SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 @@ -38,3 +60,10 @@ CONFIG += sailfishapp_i18n # following TRANSLATIONS line. And also do not forget to # modify the localized app name in the the .desktop file. TRANSLATIONS += translations/harbour-pedalo-de.ts + +HEADERS += \ + src/journey.h \ + src/journeymodel.h \ + src/status.h \ + src/settings.h \ + src/harbour-pedalo.h