TheKarmaWay.pro 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/TheKarmaWay
  3. folder_01.target = qml
  4. DEPLOYMENTFOLDERS = folder_01
  5. # Additional import path used to resolve QML modules in Creator's code model
  6. QML_IMPORT_PATH =
  7. symbian:TARGET.UID3 = 0xE47D459E
  8. # Smart Installer package's UID
  9. # This UID is from the protected range and therefore the package will
  10. # fail to install if self-signed. By default qmake uses the unprotected
  11. # range value if unprotected UID is defined for the application and
  12. # 0x2002CCCF value if protected UID is given to the application
  13. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  14. # Allow network access on Symbian
  15. symbian:TARGET.CAPABILITY += NetworkServices
  16. # If your application uses the Qt Mobility libraries, uncomment the following
  17. # lines and add the respective components to the MOBILITY variable.
  18. # CONFIG += mobility
  19. # MOBILITY +=
  20. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  21. CONFIG += qdeclarative-boostable
  22. CONFIG += mobility
  23. # Add dependency to Symbian components
  24. # CONFIG += qt-components
  25. # The .cpp file which was generated for your project. Feel free to hack it.
  26. SOURCES += main.cpp
  27. # Please do not modify the following two lines. Required for deployment.
  28. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  29. qtcAddDeployment()
  30. OTHER_FILES += \
  31. qtc_packaging/debian_harmattan/rules \
  32. qtc_packaging/debian_harmattan/README \
  33. qtc_packaging/debian_harmattan/manifest.aegis \
  34. qtc_packaging/debian_harmattan/copyright \
  35. qtc_packaging/debian_harmattan/control \
  36. qtc_packaging/debian_harmattan/compat \
  37. qtc_packaging/debian_harmattan/changelog \
  38. android/AndroidManifest.xml \
  39. android/res/drawable/icon.png \
  40. android/res/drawable/logo.png \
  41. android/res/drawable-hdpi/icon.png \
  42. android/res/drawable-ldpi/icon.png \
  43. android/res/drawable-mdpi/icon.png \
  44. android/res/layout/splash.xml \
  45. android/res/values/libs.xml \
  46. android/res/values/strings.xml \
  47. android/res/values-de/strings.xml \
  48. android/res/values-el/strings.xml \
  49. android/res/values-es/strings.xml \
  50. android/res/values-et/strings.xml \
  51. android/res/values-fa/strings.xml \
  52. android/res/values-fr/strings.xml \
  53. android/res/values-id/strings.xml \
  54. android/res/values-it/strings.xml \
  55. android/res/values-ja/strings.xml \
  56. android/res/values-ms/strings.xml \
  57. android/res/values-nb/strings.xml \
  58. android/res/values-nl/strings.xml \
  59. android/res/values-pl/strings.xml \
  60. android/res/values-pt-rBR/strings.xml \
  61. android/res/values-ro/strings.xml \
  62. android/res/values-rs/strings.xml \
  63. android/res/values-ru/strings.xml \
  64. android/res/values-zh-rCN/strings.xml \
  65. android/res/values-zh-rTW/strings.xml \
  66. android/src/org/kde/necessitas/ministro/IMinistro.aidl \
  67. android/src/org/kde/necessitas/ministro/IMinistroCallback.aidl \
  68. android/src/org/kde/necessitas/origo/QtActivity.java \
  69. android/src/org/kde/necessitas/origo/QtApplication.java \
  70. android/version.xml
  71. RESOURCES += \
  72. resources.qrc
  73. evil_hack_to_fool_lupdate {
  74. SOURCES += \
  75. qml/thekarmaway/main.qml \
  76. qml/thekarmaway/parts/BarChart.qml\
  77. qml/thekarmaway/parts/Person.qml\
  78. qml/thekarmaway/parts/TitleBar.qml\
  79. qml/thekarmaway/pages/AboutPage.qml\
  80. qml/thekarmaway/pages/AboutPage.qml\
  81. qml/thekarmaway/pages/AddKarmaForm.qml\
  82. qml/thekarmaway/pages/HelpPage.qml\
  83. qml/thekarmaway/pages/ImageSelectionDialog.qml\
  84. qml/thekarmaway/pages/KarmaListPage.qml\
  85. qml/thekarmaway/pages/PersonPage.qml\
  86. qml/thekarmaway/pages/SettingsForm.qml
  87. }
  88. TRANSLATIONS += i18n/thekarmaway_es_ES.ts
  89. !isEmpty(TRANSLATIONS) {
  90. isEmpty(QMAKE_LRELEASE) {
  91. win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
  92. else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
  93. }
  94. isEmpty(TS_DIR):TS_DIR = i18n
  95. TSQM.name = lrelease \
  96. ${QMAKE_FILE_IN}
  97. TSQM.input = TRANSLATIONS
  98. TSQM.output = $$TS_DIR/${QMAKE_FILE_BASE}.qm
  99. TSQM.commands = $$QMAKE_LRELEASE \
  100. ${QMAKE_FILE_IN}
  101. TSQM.CONFIG = no_link
  102. QMAKE_EXTRA_COMPILERS += TSQM
  103. PRE_TARGETDEPS += compiler_TSQM_make_all
  104. }
  105. else:message(No translation files in project)