OrientationExample.pro 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/OrientationExample
  3. folder_01.target = qml
  4. DEPLOYMENTFOLDERS = folder_01
  5. # Additional import path used to resolve QML modules in Creator's code model
  6. QML_IMPORT_PATH =
  7. # Avoid auto screen rotation because we handle it ourself
  8. DEFINES += ORIENTATIONLOCK
  9. # Needs to be defined for Symbian
  10. #DEFINES += NETWORKACCESS
  11. # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
  12. # (This might significantly increase build time)
  13. # DEFINES += QMLJSDEBUGGER
  14. # If your application uses the Qt Mobility libraries, uncomment
  15. # the following lines and add the respective components to the
  16. # MOBILITY variable.
  17. CONFIG += mobility
  18. MOBILITY += sensors
  19. # Sources and headers
  20. SOURCES += main.cpp
  21. symbian {
  22. TARGET.UID3 = 0xE1206E9D
  23. HEADERS += orientationfilter.h
  24. } else:maemo5 {
  25. HEADERS += orientationfilter.h
  26. }
  27. # Put generated temp-files under tmp
  28. MOC_DIR = tmp
  29. OBJECTS_DIR = tmp
  30. RCC_DIR = tmp
  31. UI_DIR = tmp
  32. # Please do not modify the following two lines. Required for deployment.
  33. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  34. qtcAddDeployment()