123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # Copyright 2011 Nokia Corporation.
- QT += core gui webkit
- TARGET = whereami
- TEMPLATE = app
- VERSION = 1.0
- INCLUDEPATH += ./inc
- HEADERS += \
- inc/mainwindow.h \
- inc/webwidget.h
- SOURCES += \
- src/main.cpp \
- src/mainwindow.cpp \
- src/webwidget.cpp
- RESOURCES += \
- whereami.qrc
- OTHER_FILES += \
- html/index.html \
- html/css/whereami.css \
- html/js/geolocation.js \
- html/js/staticmap.js \
- html/images/marker.png
- symbian {
- TARGET = WhereAmI
- TARGET.UID3 = 0xE7516D30
- TARGET.EPOCHEAPSIZE = 0x020000 0x6000000
- # Note: Usage of the Geolocation API requires Location capability on the
- # Symbian platform!
- TARGET.CAPABILITY += NetworkServices Location
- # CONFIG += mobility
- # MOBILITY += location
- LIBS += -lcone \
- -lavkon
- DEFINES += ORIENTATIONLOCK
- ICON = icons/whereami.svg
- }
- # End of file.
|