MeeDocs.pro 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/meedocs
  3. folder_01.target = qml
  4. folder_02.source = share
  5. folder_02.target = qml
  6. DEPLOYMENTFOLDERS += folder_01 \
  7. folder_02
  8. # Additional import path used to resolve QML modules in Creator's code model
  9. QML_IMPORT_PATH =
  10. symbian:TARGET.UID3 = 0xE0D7DC5E
  11. # Smart Installer package's UID
  12. # This UID is from the protected range and therefore the package will
  13. # fail to install if self-signed. By default qmake uses the unprotected
  14. # range value if unprotected UID is defined for the application and
  15. # 0x2002CCCF value if protected UID is given to the application
  16. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  17. # Allow network access on Symbian
  18. symbian:TARGET.CAPABILITY += NetworkServices
  19. # If your application uses the Qt Mobility libraries, uncomment the following
  20. # lines and add the respective components to the MOBILITY variable.
  21. # CONFIG += mobility
  22. # MOBILITY +=
  23. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  24. CONFIG += qdeclarative-boostable shareuiinterface-maemo-meegotouch share-ui-plugin share-ui-common mdatauri
  25. PKGCONFIG += libtuiclient
  26. # Add dependency to Symbian components
  27. # CONFIG += qt-components
  28. # The .cpp file which was generated for your project. Feel free to hack it.
  29. SOURCES += main.cpp \
  30. meedocs.cpp
  31. # Please do not modify the following two lines. Required for deployment.
  32. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  33. qtcAddDeployment()
  34. OTHER_FILES += \
  35. qtc_packaging/debian_harmattan/rules \
  36. qtc_packaging/debian_harmattan/README \
  37. qtc_packaging/debian_harmattan/manifest.aegis \
  38. qtc_packaging/debian_harmattan/copyright \
  39. qtc_packaging/debian_harmattan/control \
  40. qtc_packaging/debian_harmattan/compat \
  41. qtc_packaging/debian_harmattan/changelog \
  42. mimetypes.txt \
  43. meedocs_splash.svg \
  44. meedocs.svg
  45. HEADERS += \
  46. meedocs.h
  47. QT += xml \
  48. network
  49. contains(MEEGO_EDITION,harmattan) {
  50. desktopfile.files = $${TARGET}.desktop
  51. desktopfile.path = /usr/share/applications
  52. INSTALLS += desktopfile
  53. }
  54. contains(MEEGO_EDITION,harmattan) {
  55. icon.files = MeeDocs.png
  56. icon.path = /usr/share/icons/hicolor/80x80/apps
  57. INSTALLS += icon
  58. }