whereami.pro 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # Copyright 2012 Nokia Corporation.
  2. QT += core gui webkit declarative network
  3. CONFIG += qt-components
  4. TARGET = WhereAmI
  5. TEMPLATE = app
  6. VERSION = 1.0
  7. HEADERS += \
  8. src/qdeclarativewebview_p.h \
  9. src/geopermissionhandler.h
  10. SOURCES += \
  11. src/main.cpp \
  12. src/qdeclarativewebview.cpp \
  13. src/geopermissionhandler.cpp
  14. RESOURCES += rsc/common.qrc
  15. OTHER_FILES += \
  16. images/* \
  17. html/* \
  18. html/css/* \
  19. html/images/* \
  20. html/js/*
  21. symbian {
  22. TARGET.UID3 = 0xE7516D40
  23. TARGET.EPOCHEAPSIZE = 0x020000 0x6000000
  24. TARGET.CAPABILITY += \
  25. NetworkServices \
  26. Location
  27. RESOURCES += rsc/symbian.qrc
  28. OTHER_FILES += \
  29. qml/symbian/main.qml \
  30. qml/symbian/MainPage.qml
  31. ICON = icons/whereami.svg
  32. }
  33. contains(MEEGO_EDITION,harmattan) {
  34. TARGET = whereami
  35. RESOURCES += rsc/harmattan.qrc
  36. OTHER_FILES += + \
  37. qml/harmattan/main.qml \
  38. qml/harmattan/MainPage.qml \
  39. qtc_packaging/debian_harmattan/rules \
  40. qtc_packaging/debian_harmattan/README \
  41. qtc_packaging/debian_harmattan/manifest.aegis \
  42. qtc_packaging/debian_harmattan/copyright \
  43. qtc_packaging/debian_harmattan/control \
  44. qtc_packaging/debian_harmattan/compat \
  45. qtc_packaging/debian_harmattan/changelog
  46. target.path = /opt/whereami/bin
  47. desktopfile.files = whereami.desktop
  48. desktopfile.path = /usr/share/applications
  49. icon.files = icons/whereami80.png
  50. icon.path = /usr/share/icons/hicolor/80x80/apps
  51. INSTALLS += target desktopfile icon
  52. }
  53. simulator {
  54. RESOURCES += rsc/symbian.qrc
  55. OTHER_FILES += \
  56. qml/symbian/main.qml \
  57. qml/symbian/MainPage.qml
  58. }