symergy.pro 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/symergy
  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. symbian:TARGET.UID3 = 0xEF807C4F
  8. # Smart Installer package's UID
  9. # This UID is from the protected range and therefore the package will
  10. # fail to install if self-signed. By default qmake uses the unprotected
  11. # range value if unprotected UID is defined for the application and
  12. # 0x2002CCCF value if protected UID is given to the application
  13. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  14. # Allow network access on Symbian
  15. symbian:TARGET.CAPABILITY += NetworkServices
  16. # If your application uses the Qt Mobility libraries, uncomment the following
  17. # lines and add the respective components to the MOBILITY variable.
  18. # CONFIG += mobility
  19. # MOBILITY +=
  20. # Add dependency to symbian components
  21. CONFIG += qtquickcomponents mobility
  22. MOBILITY += contacts systeminfo
  23. include(server/server.pri)
  24. # The .cpp file which was generated for your project. Feel free to hack it.
  25. SOURCES += main.cpp \
  26. PhoneBookServlet.cpp \
  27. NetworkModel.cpp \
  28. ApplicationLogic.cpp
  29. HEADERS += PhoneBookServlet.h \
  30. NetworkModel.h \
  31. ApplicationLogic.h
  32. TARGET.CAPABILITY += ReadUserData WriteUserData NetworkServices
  33. # Please do not modify the following two lines. Required for deployment.
  34. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  35. qtcAddDeployment()