ecards.pro 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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+= core declarative
  5. symbian:TARGET.UID3 = 0xE1587D81
  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 += gallery messaging
  18. # The .cpp file which was generated for your project. Feel free to hack it.
  19. SOURCES += main.cpp \
  20. mainwidget.cpp \
  21. imagewidget.cpp
  22. HEADERS = mainwidget.h \
  23. imagewidget.h \
  24. cardboard.h \
  25. colortools.h
  26. OTHER_FILES += \
  27. qml/main.qml \
  28. ecards.desktop \
  29. eCards.svg \
  30. eCards.png \
  31. qtc_packaging/debian_harmattan/rules \
  32. qtc_packaging/debian_harmattan/README \
  33. qtc_packaging/debian_harmattan/copyright \
  34. qtc_packaging/debian_harmattan/control \
  35. qtc_packaging/debian_harmattan/compat \
  36. qtc_packaging/debian_harmattan/changelog \
  37. qml/add_image.png \
  38. qml/TextSheet.qml \
  39. qtc_packaging/debian_harmattan/ecards.aegis \
  40. qml/GallerySheet.qml \
  41. qml/ColorSheet.qml \
  42. qml/CardImage.qml \
  43. qml/MainCard.qml \
  44. qml/CardText.qml \
  45. qml/christmas1.jpg \
  46. qml/CardBackground.qml
  47. RESOURCES += \
  48. res.qrc
  49. # Please do not modify the following two lines. Required for deployment.
  50. include(deployment.pri)
  51. qtcAddDeployment()
  52. # enable booster
  53. CONFIG += qdeclarative-boostable
  54. QMAKE_CXXFLAGS += -fPIC -fvisibility=hidden -fvisibility-inlines-hidden
  55. QMAKE_LFLAGS += -pie -rdynamic