Meerc.pro 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 = 0xE0FE4B5A
  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 += \
  20. src/main.cpp \
  21. src/app.cpp
  22. HEADERS += \
  23. src/app.h
  24. OTHER_FILES += \
  25. qml/MainPage.qml \
  26. qml/main.qml \
  27. Meerc.desktop \
  28. Meerc.svg \
  29. Meerc.png \
  30. qtc_packaging/debian_harmattan/rules \
  31. qtc_packaging/debian_harmattan/README \
  32. qtc_packaging/debian_harmattan/copyright \
  33. qtc_packaging/debian_harmattan/control \
  34. qtc_packaging/debian_harmattan/compat \
  35. qtc_packaging/debian_harmattan/changelog \
  36. RESOURCES += \
  37. res.qrc
  38. # Please do not modify the following two lines. Required for deployment.
  39. include(deployment.pri)
  40. qtcAddDeployment()
  41. # enable booster
  42. CONFIG += qdeclarative-boostable
  43. QMAKE_CXXFLAGS += -fPIC -fvisibility=hidden -fvisibility-inlines-hidden
  44. QMAKE_LFLAGS += -pie -rdynamic