CamTest.pro 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. VERSION=1.0.0
  2. VERSTR = '\\"$${VERSION}\\"'
  3. DEFINES += VER=\"$${VERSTR}\"
  4. qml_folder.source = qml/CamTest
  5. qml_folder.target = qml
  6. DEPLOYMENTFOLDERS = qml_folder
  7. # Additional import path used to resolve QML modules in Creator's code model
  8. QML_IMPORT_PATH =
  9. include ('viewfinder/viewfinder.pri')
  10. symbian {
  11. TARGET = CamTest2
  12. TARGET.UID3 = 0xE0FDEE41
  13. DEPLOYMENT.display_name = "CamTest 2"
  14. vendorinfo = \
  15. "%{\"Codemancers Oy\"}" \
  16. ":\"Codemancers Oy\""
  17. vendorinfo_deployment.pkg_prerules = vendorinfo
  18. DEPLOYMENT += vendorinfo_deployment
  19. }
  20. # If your application uses the Qt Mobility libraries, uncomment the following
  21. # lines and add the respective components to the MOBILITY variable.
  22. # CONFIG += mobility
  23. # MOBILITY +=
  24. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  25. CONFIG += qdeclarative-boostable
  26. # Add dependency to Symbian components
  27. CONFIG += qt-components
  28. # The .cpp file which was generated for your project. Feel free to hack it.
  29. SOURCES += main.cpp
  30. # Please do not modify the following two lines. Required for deployment.
  31. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  32. qtcAddDeployment()