harbour-golem.pro 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # The name of your application
  12. TARGET = harbour-golem
  13. CONFIG += sailfishapp
  14. QT += network
  15. SOURCES += src/harbour-golem.cpp \
  16. persistentcookiejar.cpp
  17. DISTFILES += qml/harbour-golem.qml \
  18. qml/cover/CoverPage.qml \
  19. qml/pages/FirstPage.qml \
  20. rpm/harbour-golem.changes.in \
  21. rpm/harbour-golem.changes.run.in \
  22. rpm/harbour-golem.spec \
  23. rpm/harbour-golem.yaml \
  24. translations/*.ts \
  25. harbour-golem.desktop
  26. SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
  27. # to disable building translations every time, comment out the
  28. # following CONFIG line
  29. CONFIG += sailfishapp_i18n
  30. # German translation is enabled as an example. If you aren't
  31. # planning to localize your app, remember to comment out the
  32. # following TRANSLATIONS line. And also do not forget to
  33. # modify the localized app name in the the .desktop file.
  34. TRANSLATIONS += translations/harbour-golem-de.ts
  35. HEADERS += \
  36. persistentcookiejar.h