123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # Add more folders to ship with the application, here
- folder_01.source = qml/LocationApp
- folder_01.target = qml
- DEPLOYMENTFOLDERS = folder_01
- # Additional import path used to resolve QML modules in Creator's code model
- QML_IMPORT_PATH =
- symbian {
- TARGET.UID3 = 0xE2DB8D9B
- TARGET.CAPABILITY = Location LocalServices ReadUserData \
- WriteUserData NetworkServices
- LIBS += -lservicehandler
- INCLUDEPATH += ../QtSDK/Symbian/SDKs/Symbian3Qt473_12b/src/connectivity/bluetooth
- }
- # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
- # (This might significantly increase build time)
- # DEFINES += QMLJSDEBUGGER
- # If your application uses the Qt Mobility libraries, uncomment
- # the following lines and add the respective components to the
- # MOBILITY variable.
- CONFIG += mobility
- MOBILITY += location connectivity
- # The .cpp file which was generated for your project. Feel free to hack it.
- SOURCES += main.cpp \
- src/location/locationmanager.cpp \
- src/location/locationgesturearea.cpp \
- src/connection/nfcaiwwrapper.cpp \
- src/connection/nfcaiwengine.cpp \
- src/connection/connectionengine.cpp \
- src/connection/btserver.cpp \
- src/connection/btclient.cpp
- HEADERS += main.h \
- src/location/locationmanager.h \
- src/location/locationgesturearea.h \
- src/connection/nfcaiwwrapper.h \
- src/connection/nfcaiwengine.h \
- src/connection/connectionengine.h \
- src/connection/btserver.h \
- src/connection/btclient.h
- # Please do not modify the following two lines. Required for deployment.
- include(qmlapplicationviewer/qmlapplicationviewer.pri)
- qtcAddDeployment()
- OTHER_FILES += \
- qml/LocationApp/ViewManager.qml
- # GCCE permissive option must be set to avoid compilation error
- # from /epoc32/include/mw/AiwVariant.h system header file:
- # /epoc32/include/mw/AiwVariant.h:115: error: extra qualification 'TAiwVariant::' on member 'operator=')
- QMAKE_CXXFLAGS.GCCE += -fpermissive
|