meegim.pro 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. # Add more folders to ship with the application, here
  2. folder_01.source = smiles
  3. folder_01.target =
  4. DEPLOYMENTFOLDERS = folder_01
  5. QT += declarative
  6. QT += network
  7. # Additional import path used to resolve QML modules in Creator's code model
  8. QML_IMPORT_PATH =
  9. symbian:TARGET.UID3 = 0xE22AC278
  10. # Smart Installer package's UID
  11. # This UID is from the protected range and therefore the package will
  12. # fail to install if self-signed. By default qmake uses the unprotected
  13. # range value if unprotected UID is defined for the application and
  14. # 0x2002CCCF value if protected UID is given to the application
  15. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  16. # Allow network access on Symbian
  17. symbian:TARGET.CAPABILITY += NetworkServices
  18. # If your application uses the Qt Mobility libraries, uncomment the following
  19. # lines and add the respective components to the MOBILITY variable.
  20. CONFIG += mobility
  21. MOBILITY += feedback
  22. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  23. CONFIG += qdeclarative-boostable
  24. # For the #include <meventfeed.h>
  25. CONFIG += meegotouchevents
  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. ima/minversemousearea.cpp \
  31. MyXmppClient.cpp \
  32. listmodel.cpp \
  33. rosterlistmodel.cpp \
  34. rosteritemmodel.cpp \
  35. mycache.cpp \
  36. storevcard.cpp \
  37. mysettings.cpp \
  38. messagewrapper.cpp \
  39. msgitemmodel.cpp \
  40. msglistmodel.cpp \
  41. chatslistmodel.cpp \
  42. chatsitemmodel.cpp \
  43. accountsitemmodel.cpp \
  44. accountslistmodel.cpp \
  45. meegimsettings.cpp \
  46. qmlvcard.cpp \
  47. qmlrostermodel.cpp \
  48. mysmiles.cpp \
  49. smilesitemmodel.cpp \
  50. smileslistmodel.cpp \
  51. xmppmuc.cpp \
  52. rosterxml.cpp \
  53. harmattanfeed.cpp \
  54. smthemeitemmodel.cpp \
  55. smthemelistmodel.cpp
  56. HEADERS += MyXmppClient.h \
  57. ima/minversemousearea.h \
  58. listmodel.h \
  59. rosterlistmodel.h \
  60. rosteritemmodel.h \
  61. mycache.h \
  62. storevcard.h \
  63. mysettings.h \
  64. messagewrapper.h \
  65. msgitemmodel.h \
  66. msglistmodel.h \
  67. chatslistmodel.h \
  68. chatsitemmodel.h \
  69. accountsitemmodel.h \
  70. accountslistmodel.h \
  71. meegimsettings.h \
  72. qmlvcard.h \
  73. qmlrostermodel.h \
  74. mysmiles.h \
  75. smilesitemmodel.h \
  76. smileslistmodel.h \
  77. xmppmuc.h \
  78. rosterxml.h \
  79. harmattanfeed.h \
  80. smthemeitemmodel.h \
  81. smthemelistmodel.h
  82. # Please do not modify the following two lines. Required for deployment.
  83. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  84. qtcAddDeployment()
  85. OTHER_FILES += \
  86. qtc_packaging/debian_harmattan/rules \
  87. qtc_packaging/debian_harmattan/README \
  88. qtc_packaging/debian_harmattan/manifest.aegis \
  89. qtc_packaging/debian_harmattan/copyright \
  90. qtc_packaging/debian_harmattan/control \
  91. qtc_packaging/debian_harmattan/compat \
  92. qtc_packaging/debian_harmattan/changelog \
  93. qml/ChatsPage.qml \
  94. qml/DialogAccountOptions.qml \
  95. qml/Button.qml \
  96. qml/MyTextInput.qml \
  97. qml/MyTextEdit.qml \
  98. qml/AccountAddPage.qml \
  99. qml/MyCheckBox.qml \
  100. qml/DialogQuery.qml \
  101. qml/TopInfoPanel.qml \
  102. qml/main.js \
  103. qml/MainView.qml \
  104. qml/Notify.qml \
  105. qml/VCardPage.qml \
  106. qml/AboutPage.qml \
  107. qml/DialogSmiles.qml \
  108. qml/SettingsPage.qml \
  109. qml/DialogInfo.qml \
  110. README \
  111. qml/main.qml \
  112. qml/MyPage.qml \
  113. qml/RosterPage.qml \
  114. qml/MyTheme.qml \
  115. qml/HorizontalGradient.qml \
  116. qml/ToolBar.qml \
  117. qml/ToolButton.qml \
  118. qml/TopPanel.qml \
  119. qml/DialogMyStatus.qml \
  120. qml/DialogOptionsRoster.qml \
  121. qml/MessagesPage.qml \
  122. qml/ShadowRectangle.qml \
  123. qml/AccountsPage.qml \
  124. qml/AddContactPage.qml \
  125. qml/DialogEdit.qml \
  126. qml/DialogLiquid.qml \
  127. qml/DialogSubscribes.qml \
  128. qml/HiddenBlock.qml \
  129. qml/DialogFiles.qml \
  130. qml/Magnifier.qml \
  131. qml/Magnifier.js \
  132. qml/MucPage.qml \
  133. qml/DialogMucInvite.qml \
  134. qml/MyTextEdit2.qml \
  135. qml/DialogMsgOptions.qml \
  136. qml/MyTextInput2.qml \
  137. qml/MucLoginPage.qml \
  138. qml/DialogMucOptions.qml \
  139. qml/DiscoveryPage.qml
  140. #OTHER_FILES += qml/nokia_components/*.js \
  141. # qml/nokia_components/*.qml
  142. #qxmpp
  143. INCLUDEPATH += qxmpp/base/ qxmpp/client
  144. include(qxmpp/qxmpp.pri)
  145. RESOURCES += \
  146. resources.qrc