123456789101112131415161718192021222324252627282930313233343536 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2010-09-02T11:33:39
- #
- #-------------------------------------------------
- QT += core gui network xml webkit maemo5
- TARGET = BikeFinder
- TEMPLATE = app
- SOURCES += main.cpp\
- mainwindow.cpp \
- mapwidget.cpp
- HEADERS += mainwindow.h \
- mapwidget.h
- FORMS += mainwindow.ui \
- mapwidget.ui
- CONFIG += mobility
- MOBILITY = location
- symbian {
- TARGET.UID3 = 0xeeb05b4a
- # TARGET.CAPABILITY +=
- TARGET.EPOCSTACKSIZE = 0x14000
- TARGET.EPOCHEAPSIZE = 0x020000 0x800000
- }
- RESOURCES += \
- html.qrc
|