OSDN Git Service

Merge remote branch 'origin/2.1'
[qt-creator-jp/qt-creator-jp.git] / share / qtcreator / templates / qmlapp / app.pro
1 # Add more folders to ship with the application, here
2 # DEPLOYMENTFOLDERS #
3 folder_01.source = qml/app
4 folder_01.target = qml
5 DEPLOYMENTFOLDERS = folder_01
6 # DEPLOYMENTFOLDERS_END #
7
8 # Additional import path used to resolve Qml modules in Creator's code model
9 # QML_IMPORT_PATH #
10 QML_IMPORT_PATH =
11
12 # Avoid auto screen rotation
13 # ORIENTATIONLOCK #
14 DEFINES += ORIENTATIONLOCK
15
16 # Needs to be defined for Symbian
17 # NETWORKACCESS #
18 DEFINES += NETWORKACCESS
19
20 # TARGETUID3 #
21 symbian:TARGET.UID3 = 0xE1111234
22
23 # Smart Installer package's UID
24 # This UID is from the protected range 
25 # and therefore the package will fail to install if self-signed
26 # By default qmake uses the unprotected range value if unprotected UID is defined for the application
27 # and 0x2002CCCF value if protected UID is given to the application
28 #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
29
30 # Define QMLJSDEBUGGER to enable basic debugging (setting breakpoints etc)
31 # Define QMLOBSERVER for advanced features (requires experimental QmlInspector plugin!)
32 #DEFINES += QMLJSDEBUGGER
33 #DEFINES += QMLOBSERVER
34
35 # The .cpp file which was generated for your project. Feel free to hack it.
36 SOURCES += main.cpp
37
38 # Please do not modify the following two lines. Required for deployment.
39 include(qmlapplicationviewer/qmlapplicationviewer.pri)
40 # INCLUDE_DEPLOYMENT_PRI (wizard will remove the include and append deployment.pri to qmlapplicationviewer.pri, instead) #
41 include(../shared/deployment.pri)
42 qtcAddDeployment()