CommunityComponentsDemo.pro 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/CommunityComponentsDemo
  3. folder_01.target = qml
  4. folder_02.source = qml/CommunityModule
  5. folder_02.target = qml
  6. DEPLOYMENTFOLDERS = folder_01 folder_02
  7. # Additional import path used to resolve QML modules in Creator's code model
  8. QML_IMPORT_PATH += qml/CommunityModule
  9. symbian:TARGET.UID3 = 0xE336A678
  10. # Smart Installer package's UID
  11. # This UID is from the protected range and therefore the package will
  12. # fail to install if self-signed. By default qmake uses the unprotected
  13. # range value if unprotected UID is defined for the application and
  14. # 0x2002CCCF value if protected UID is given to the application
  15. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  16. # Allow network access on Symbian
  17. symbian:TARGET.CAPABILITY += NetworkServices
  18. # If your application uses the Qt Mobility libraries, uncomment the following
  19. # lines and add the respective components to the MOBILITY variable.
  20. # CONFIG += mobility
  21. # MOBILITY +=
  22. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  23. # CONFIG += qdeclarative-boostable
  24. # Add dependency to Symbian components
  25. CONFIG += qt-components
  26. # The .cpp file which was generated for your project. Feel free to hack it.
  27. SOURCES += main.cpp
  28. # Please do not modify the following two lines. Required for deployment.
  29. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  30. qtcAddDeployment()