whereami.pro 935 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Copyright 2011 Nokia Corporation.
  2. QT += core gui webkit
  3. TARGET = whereami
  4. TEMPLATE = app
  5. VERSION = 1.0
  6. INCLUDEPATH += ./inc
  7. HEADERS += \
  8. inc/mainwindow.h \
  9. inc/webwidget.h
  10. SOURCES += \
  11. src/main.cpp \
  12. src/mainwindow.cpp \
  13. src/webwidget.cpp
  14. RESOURCES += \
  15. whereami.qrc
  16. OTHER_FILES += \
  17. html/index.html \
  18. html/css/whereami.css \
  19. html/js/geolocation.js \
  20. html/js/staticmap.js \
  21. html/images/marker.png
  22. symbian {
  23. TARGET = WhereAmI
  24. TARGET.UID3 = 0xE7516D30
  25. TARGET.EPOCHEAPSIZE = 0x020000 0x6000000
  26. # Note: Usage of the Geolocation API requires Location capability on the
  27. # Symbian platform!
  28. TARGET.CAPABILITY += NetworkServices Location
  29. # CONFIG += mobility
  30. # MOBILITY += location
  31. LIBS += -lcone \
  32. -lavkon
  33. DEFINES += ORIENTATIONLOCK
  34. ICON = icons/whereami.svg
  35. }
  36. # End of file.