1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # Add more folders to ship with the application, here
- folder_01.source = qml/OrientationExample
- folder_01.target = qml
- DEPLOYMENTFOLDERS = folder_01
- # Additional import path used to resolve QML modules in Creator's code model
- QML_IMPORT_PATH =
- # Avoid auto screen rotation because we handle it ourself
- DEFINES += ORIENTATIONLOCK
- # Needs to be defined for Symbian
- #DEFINES += NETWORKACCESS
- # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
- # (This might significantly increase build time)
- # DEFINES += QMLJSDEBUGGER
- # If your application uses the Qt Mobility libraries, uncomment
- # the following lines and add the respective components to the
- # MOBILITY variable.
- CONFIG += mobility
- MOBILITY += sensors
- # Sources and headers
- SOURCES += main.cpp
- symbian {
- TARGET.UID3 = 0xE1206E9D
- HEADERS += orientationfilter.h
- } else:maemo5 {
- HEADERS += orientationfilter.h
- }
- # Put generated temp-files under tmp
- MOC_DIR = tmp
- OBJECTS_DIR = tmp
- RCC_DIR = tmp
- UI_DIR = tmp
- # Please do not modify the following two lines. Required for deployment.
- include(qmlapplicationviewer/qmlapplicationviewer.pri)
- qtcAddDeployment()
|