IMQuery.pro 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Add more folders to ship with the application, here
  2. # Additional import path used to resolve QML modules in Creator's code model
  3. QML_IMPORT_PATH =
  4. QT+= declarative
  5. symbian:TARGET.UID3 = 0xE943AB22
  6. # Smart Installer package's UID
  7. # This UID is from the protected range and therefore the package will
  8. # fail to install if self-signed. By default qmake uses the unprotected
  9. # range value if unprotected UID is defined for the application and
  10. # 0x2002CCCF value if protected UID is given to the application
  11. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  12. # Allow network access on Symbian
  13. symbian:TARGET.CAPABILITY += NetworkServices
  14. # If your application uses the Qt Mobility libraries, uncomment the following
  15. # lines and add the respective components to the MOBILITY variable.
  16. # CONFIG += mobility
  17. # MOBILITY +=
  18. # The .cpp file which was generated for your project. Feel free to hack it.
  19. SOURCES += main.cpp
  20. OTHER_FILES += \
  21. qml/MainPage.qml \
  22. qml/main.qml \
  23. qml/IMQuery.js \
  24. IMQuery.desktop \
  25. IMQuery.svg \
  26. IMQuery.png \
  27. qtc_packaging/debian_harmattan/rules \
  28. qtc_packaging/debian_harmattan/README \
  29. qtc_packaging/debian_harmattan/copyright \
  30. qtc_packaging/debian_harmattan/control \
  31. qtc_packaging/debian_harmattan/compat \
  32. qtc_packaging/debian_harmattan/changelog \
  33. qml/content/images/IMQuery.png \
  34. qml/db/7c78ebb4c223c96f8e6ccc29f73cc28e.ini \
  35. qml/db/7c78ebb4c223c96f8e6ccc29f73cc28e.sqlite
  36. RESOURCES += \
  37. res.qrc
  38. # To deploy additional files to Harmattan devices (in this case, the SQLite database files), use the DEPLOYMENTFOLDERS variable
  39. IMDBINI.source = qml/db/7c78ebb4c223c96f8e6ccc29f73cc28e.ini
  40. IMDBINI.target = db/
  41. DEPLOYMENTFOLDERS += IMDBINI
  42. IMDB.source = qml/db/7c78ebb4c223c96f8e6ccc29f73cc28e.sqlite
  43. IMDB.target = db/
  44. DEPLOYMENTFOLDERS += IMDB
  45. # Please do not modify the following two lines. Required for deployment.
  46. include(deployment.pri)
  47. qtcAddDeployment()
  48. # enable booster
  49. CONFIG += qdeclarative-boostable
  50. QMAKE_CXXFLAGS += -fPIC -fvisibility=hidden -fvisibility-inlines-hidden
  51. QMAKE_LFLAGS += -pie -rdynamic