TicTacToe.pro 962 B

123456789101112131415161718192021222324252627282930313233
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/TicTacToe
  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
  8. #DEFINES += ORIENTATIONLOCK
  9. # Needs to be defined for Symbian
  10. #DEFINES += NETWORKACCESS
  11. symbian:TARGET.UID3 = 0xEFD78CFE
  12. # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
  13. # (This might significantly increase build time)
  14. # DEFINES += QMLJSDEBUGGER
  15. # If your application uses the Qt Mobility libraries, uncomment
  16. # the following lines and add the respective components to the
  17. # MOBILITY variable.
  18. # CONFIG += mobility
  19. # MOBILITY +=
  20. # The .cpp file which was generated for your project. Feel free to hack it.
  21. SOURCES += main.cpp
  22. # Please do not modify the following two lines. Required for deployment.
  23. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  24. qtcAddDeployment()