LocationApp.pro 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Add more folders to ship with the application, here
  2. folder_01.source = qml/LocationApp
  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 {
  8. TARGET.UID3 = 0xE2DB8D9B
  9. TARGET.CAPABILITY = Location LocalServices ReadUserData \
  10. WriteUserData NetworkServices
  11. LIBS += -lservicehandler
  12. INCLUDEPATH += ../QtSDK/Symbian/SDKs/Symbian3Qt473_12b/src/connectivity/bluetooth
  13. }
  14. # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
  15. # (This might significantly increase build time)
  16. # DEFINES += QMLJSDEBUGGER
  17. # If your application uses the Qt Mobility libraries, uncomment
  18. # the following lines and add the respective components to the
  19. # MOBILITY variable.
  20. CONFIG += mobility
  21. MOBILITY += location connectivity
  22. # The .cpp file which was generated for your project. Feel free to hack it.
  23. SOURCES += main.cpp \
  24. src/location/locationmanager.cpp \
  25. src/location/locationgesturearea.cpp \
  26. src/connection/nfcaiwwrapper.cpp \
  27. src/connection/nfcaiwengine.cpp \
  28. src/connection/connectionengine.cpp \
  29. src/connection/btserver.cpp \
  30. src/connection/btclient.cpp
  31. HEADERS += main.h \
  32. src/location/locationmanager.h \
  33. src/location/locationgesturearea.h \
  34. src/connection/nfcaiwwrapper.h \
  35. src/connection/nfcaiwengine.h \
  36. src/connection/connectionengine.h \
  37. src/connection/btserver.h \
  38. src/connection/btclient.h
  39. # Please do not modify the following two lines. Required for deployment.
  40. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  41. qtcAddDeployment()
  42. OTHER_FILES += \
  43. qml/LocationApp/ViewManager.qml
  44. # GCCE permissive option must be set to avoid compilation error
  45. # from /epoc32/include/mw/AiwVariant.h system header file:
  46. # /epoc32/include/mw/AiwVariant.h:115: error: extra qualification 'TAiwVariant::' on member 'operator=')
  47. QMAKE_CXXFLAGS.GCCE += -fpermissive