Carpool.pro 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. QT += network script
  2. # Add more folders to ship with the application, here
  3. folder_01.source = qml/Carpool
  4. folder_01.target = qml
  5. DEPLOYMENTFOLDERS = folder_01
  6. # Additional import path used to resolve QML modules in Creator's code model
  7. QML_IMPORT_PATH =
  8. symbian:TARGET.UID3 = 0xE5826B83
  9. # Allow network access on Symbian
  10. symbian:TARGET.CAPABILITY = NetworkServices Location ReadUserData WriteUserData
  11. # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
  12. # (This might significantly increase build time)
  13. # DEFINES += QMLJSDEBUGGER
  14. # If your application uses the Qt Mobility libraries, uncomment
  15. # the following lines and add the respective components to the
  16. # MOBILITY variable.
  17. # CONFIG += mobility
  18. # MOBILITY +=
  19. CONFIG += mobility
  20. MOBILITY = location contacts messaging
  21. # The .cpp file which was generated for your project. Feel free to hack it.
  22. SOURCES += main.cpp \
  23. geohelper.cpp \
  24. smshelper.cpp \
  25. # Please do not modify the following two lines. Required for deployment.
  26. include(qmlapplicationviewer/qmlapplicationviewer.pri)
  27. qtcAddDeployment()
  28. HEADERS += \
  29. geohelper.h \
  30. smshelper.h