restfulplacesaround.pro 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Copyright (c) 2012 Nokia Corporation.
  2. QT += core declarative network
  3. CONFIG += mobility qt-components
  4. MOBILITY += location
  5. TARGET = Places
  6. TEMPLATE = app
  7. VERSION = 1.0
  8. include (placesapiplugin/placesapiplugin.pri)
  9. INCLUDEPATH += src
  10. HEADERS += \
  11. src/mainloader.h \
  12. src/settings.h
  13. SOURCES += \
  14. src/main.cpp \
  15. src/mainloader.cpp \
  16. src/settings.cpp
  17. OTHER_FILES += \
  18. qml/common/*
  19. RESOURCES += rsc/common.qrc
  20. # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
  21. # CONFIG += qdeclarative-boostable
  22. symbian {
  23. TARGET.UID3 = 0xE156DC89
  24. # Smart Installer package's UID
  25. # This UID is from the protected range and therefore the package will
  26. # fail to install if self-signed. By default qmake uses the unprotected
  27. # range value if unprotected UID is defined for the application and
  28. # 0x2002CCCF value if protected UID is given to the application
  29. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  30. TARGET.CAPABILITY += NetworkServices Location
  31. TARGET.EPOCHEAPSIZE = 0x020000 0x6000000
  32. # To lock the application to portrait orientation
  33. LIBS += -lcone -leikcore -lavkon
  34. RESOURCES += rsc/symbian.qrc
  35. OTHER_FILES += qml/symbian/*
  36. ICON = icons/restfulplacesaround.svg
  37. }
  38. contains(MEEGO_EDITION,harmattan) {
  39. TARGET = restfulplacesaround
  40. DEFINES += MEEGO_EDITION_HARMATTAN
  41. contains(CONFIG,qdeclarative-boostable) {
  42. DEFINES += HARMATTAN_BOOSTER
  43. }
  44. RESOURCES += rsc/harmattan.qrc
  45. OTHER_FILES += qml/harmattan/*
  46. target.path = /opt/$${TARGET}/bin
  47. desktopfile.files = $${TARGET}.desktop
  48. desktopfile.path = /usr/share/applications
  49. icon64.files += icons/restfulplacesaround80.png
  50. icon64.path = /usr/share/icons/hicolor/64x64/apps
  51. INSTALLS += \
  52. target \
  53. desktopfile \
  54. icon64
  55. }
  56. simulator {
  57. message(Simulator build)
  58. RESOURCES += rsc/symbian.qrc
  59. OTHER_FILES += qml/symbian/*
  60. }