1# Add more folders to ship with the application, here
2folder_01.source = qml/main
3folder_01.target = qml
4DEPLOYMENTFOLDERS = folder_01
5
6# Additional import path used to resolve QML modules in Creator's code model
7QML_IMPORT_PATH =
8
9# Avoid auto screen rotation
10DEFINES += ORIENTATIONLOCK
11
12# Needs to be defined for Symbian
13#DEFINES += NETWORKACCESS
14
15symbian:TARGET.UID3 = 0xE647B679
16
17# Smart Installer package's UID
18# This UID is from the protected range
19# and therefore the package will fail to install if self-signed
20# By default qmake uses the unprotected range value if unprotected UID is defined for the application
21# and 0x2002CCCF value if protected UID is given to the application
22#symbian:DEPLOYMENT.installer_header = 0x2002CCCF
23
24# Define QMLJSDEBUGGER to allow debugging of QML in debug builds
25# (This might significantly increase build time)
26# DEFINES += QMLJSDEBUGGER
27
28# If your application uses the Qt Mobility libraries, uncomment
29# the following lines and add the respective components to the
30# MOBILITY variable.
31# CONFIG += mobility
32# MOBILITY +=
33
34# The .cpp file which was generated for your project. Feel free to hack it.
35SOURCES += main.cpp
36
37# Please do not modify the following two lines. Required for deployment.
38desktopInstallPrefix=$$[QT_INSTALL_EXAMPLES]/declarative/ui-components/main
39exists(qmlapplicationviewer/qmlapplicationviewer.pri):include(qmlapplicationviewer/qmlapplicationviewer.pri)
40else:include(../../../helper/qmlapplicationviewer/qmlapplicationviewer.pri)
41qtcAddDeployment()
42