P2Pexample.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/P2Pexample
  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 = 0xE217013B
  8. # Allow network access on Symbian
  9. symbian:TARGET.CAPABILITY += NetworkServices LocalServices
  10. # Icon for symbian application
  11. symbian:ICON = qml/P2Pexample/p2p_icon.svg
  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 += connectivity
  20. # The .cpp file which was generated for your project. Feel free to hack it.
  21. SOURCES += main.cpp \
  22. nfcconnection.cpp \
  23. p2pengine.cpp \
  24. # Please do not modify the following two lines. Required for deployment.
  25. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  26. qtcAddDeployment()
  27. HEADERS += main.h \
  28. nfcconnection.h \
  29. p2pengine.h