123456789101112131415161718192021222324252627282930313233343536373839 |
- # Add files and directories to ship with the application
- # by adapting the examples below.
- # file1.source = myfile
- # dir1.source = mydir
- DEPLOYMENTFOLDERS = # file1 dir1
- # Avoid auto screen rotation
- DEFINES += ORIENTATIONLOCK
- # Needs to be defined for Symbian
- #DEFINES += NETWORKACCESS
- symbian:TARGET.UID3 = 0xE6A8ECE8
- # If your application uses the Qt Mobility libraries, uncomment
- # the following lines and add the respective components to the
- # MOBILITY variable.
- # CONFIG += mobility
- # MOBILITY +=
- QT += core \
- gui \
- xml \
- network \
- webkit \
- declarative
- SOURCES += main.cpp
- HEADERS += appdata.h
- FORMS += mainwindow.ui
- # Please do not modify the following two lines. Required for deployment.
- include(deployment.pri)
- qtcAddDeployment()
- RESOURCES += \
- resources.qrc
|