ExifExample.pro 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/ExifExample
  3. folder_01.target = qml
  4. DEPLOYMENTFOLDERS = folder_01
  5. # Additional import path used to resolve QML modules in Creator's code model
  6. QML_IMPORT_PATH =
  7. # Smart Installer package's UID
  8. # This UID is from the protected range and therefore the package will
  9. # fail to install if self-signed. By default qmake uses the unprotected
  10. # range value if unprotected UID is defined for the application and
  11. # 0x2002CCCF value if protected UID is given to the application
  12. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  13. # Allow network access on Symbian
  14. symbian {
  15. TARGET.UID3 = 0xE40DBC5A
  16. LIBS+=-lExifLib
  17. LIBS+=-lefsrv
  18. TARGET.CAPABILITY = LocalServices \
  19. NetworkServices \
  20. ReadUserData \
  21. UserEnvironment \
  22. WriteUserData
  23. }
  24. # If your application uses the Qt Mobility libraries, uncomment the following
  25. # lines and add the respective components to the MOBILITY variable.
  26. CONFIG += mobility
  27. MOBILITY += gallery systeminfo
  28. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  29. # CONFIG += qdeclarative-boostable
  30. # Add dependency to Symbian components
  31. CONFIG += qt-components
  32. # The .cpp file which was generated for your project. Feel free to hack it.
  33. SOURCES += main.cpp \
  34. exifhandler.cpp \
  35. cexifsymbian.cpp \
  36. exifitem.cpp
  37. # Please do not modify the following two lines. Required for deployment.
  38. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  39. qtcAddDeployment()
  40. HEADERS += \
  41. exifhandler.h \
  42. cexifsymbian.h \
  43. exifitem.h