OSDN Git Service

Git: Only allow commit if author information is valid
[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 # Define QMLJSDEBUGGER to enable basic debugging (setting breakpoints etc)
24 # Define QMLOBSERVER for advanced features (requires experimental QmlInspector plugin!)
25 #DEFINES += QMLJSDEBUGGER
26 #DEFINES += QMLOBSERVER
27
28 # The .cpp file which was generated for your project. Feel free to hack it.
29 SOURCES += main.cpp
30
31 # Please do not modify the following two lines. Required for deployment.
32 include(qmlapplicationviewer/qmlapplicationviewer.pri)
33 # INCLUDE_DEPLOYMENT_PRI (wizard will remove the include and append deployment.pri to qmlapplicationviewer.pri, instead) #
34 include(../shared/deployment.pri)
35 qtcAddDeployment()