1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Add more folders to ship with the application, here
- folder_01.source = qml/SensorCamera
- folder_01.target = qml
- DEPLOYMENTFOLDERS = folder_01
- TEMPLATE=app
- QT += declarative network
- CONFIG += mobility
- MOBILITY += multimedia sensors
- !maemo5 {
- contains(QT_CONFIG, opengl) {
- QT += opengl
- }
- }
- symbian {
- TARGET.CAPABILITY += UserEnvironment NetworkServices Location ReadUserData WriteUserData
- TARGET.EPOCHEAPSIZE = 0x20000 0x3000000
- # Smart Installer package's UID
- # This UID is from the protected range and therefore the package will
- # fail to install if self-signed. By default qmake uses the unprotected
- # range value if unprotected UID is defined for the application and
- # 0x2002CCCF value if protected UID is given to the application
- DEPLOYMENT.installer_header = 0x2002CCCF
- TARGET.UID3 = 0xE07F392E
- }
- # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
- harmattan {
- CONFIG += qdeclarative-boostable
- }
- # http://www.developer.nokia.com/Community/Wiki/CamFeatures:_QML_component_to_get_camera_capabilities
- HEADERS += camfeatures.h
- SOURCES += main.cpp \
- camfeatures.cpp
- # Please do not modify the following two lines. Required for deployment.
- include(qmlapplicationviewer/qmlapplicationviewer.pri)
- qtcAddDeployment()
- OTHER_FILES += \
- qtc_packaging/debian_harmattan/rules \
- qtc_packaging/debian_harmattan/README \
- qtc_packaging/debian_harmattan/manifest.aegis \
- qtc_packaging/debian_harmattan/copyright \
- qtc_packaging/debian_harmattan/control \
- qtc_packaging/debian_harmattan/compat \
- qtc_packaging/debian_harmattan/changelog \
- qtc_packaging/debian_fremantle/rules \
- qtc_packaging/debian_fremantle/README \
- qtc_packaging/debian_fremantle/copyright \
- qtc_packaging/debian_fremantle/control \
- qtc_packaging/debian_fremantle/compat \
- qtc_packaging/debian_fremantle/changelog
|