SensorCamera.pro 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/SensorCamera
  3. folder_01.target = qml
  4. DEPLOYMENTFOLDERS = folder_01
  5. TEMPLATE=app
  6. QT += declarative network
  7. CONFIG += mobility
  8. MOBILITY += multimedia sensors
  9. !maemo5 {
  10. contains(QT_CONFIG, opengl) {
  11. QT += opengl
  12. }
  13. }
  14. symbian {
  15. TARGET.CAPABILITY += UserEnvironment NetworkServices Location ReadUserData WriteUserData
  16. TARGET.EPOCHEAPSIZE = 0x20000 0x3000000
  17. # Smart Installer package's UID
  18. # This UID is from the protected range and therefore the package will
  19. # fail to install if self-signed. By default qmake uses the unprotected
  20. # range value if unprotected UID is defined for the application and
  21. # 0x2002CCCF value if protected UID is given to the application
  22. DEPLOYMENT.installer_header = 0x2002CCCF
  23. TARGET.UID3 = 0xE07F392E
  24. }
  25. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  26. harmattan {
  27. CONFIG += qdeclarative-boostable
  28. }
  29. # http://www.developer.nokia.com/Community/Wiki/CamFeatures:_QML_component_to_get_camera_capabilities
  30. HEADERS += camfeatures.h
  31. SOURCES += main.cpp \
  32. camfeatures.cpp
  33. # Please do not modify the following two lines. Required for deployment.
  34. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  35. qtcAddDeployment()
  36. OTHER_FILES += \
  37. qtc_packaging/debian_harmattan/rules \
  38. qtc_packaging/debian_harmattan/README \
  39. qtc_packaging/debian_harmattan/manifest.aegis \
  40. qtc_packaging/debian_harmattan/copyright \
  41. qtc_packaging/debian_harmattan/control \
  42. qtc_packaging/debian_harmattan/compat \
  43. qtc_packaging/debian_harmattan/changelog \
  44. qtc_packaging/debian_fremantle/rules \
  45. qtc_packaging/debian_fremantle/README \
  46. qtc_packaging/debian_fremantle/copyright \
  47. qtc_packaging/debian_fremantle/control \
  48. qtc_packaging/debian_fremantle/compat \
  49. qtc_packaging/debian_fremantle/changelog