1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- TEMPLATE = app
- TARGET = qwhowheredaemon
- QT += core
- QT -= gui
- VERSION = 1.0.1
- CONFIG += no_icon
- CONFIG += mobility
- MOBILITY = location messaging serviceframework
- HEADERS += Daemon.h \
- Message.h
- SOURCES += Daemon.cpp \
- Message.cpp \
- main.cpp
- OTHER_FILES += wwdaemonservice.xml
- # Symbian
- symbian {
- load(data_caging_paths)
- TARGET.EPOCSTACKSIZE = 0x14000
- TARGET.EPOCHEAPSIZE = 0x020000 0x3000000
- TARGET.UID3 = 0xE2E04FD2
-
-
- TARGET.CAPABILITY = NetworkServices \
- Location \
- ReadUserData \
- WriteUserData \
- LocalServices \
- UserEnvironment \
- ReadDeviceData \
- WriteDeviceData
-
- xmlServiceFile.sources = wwdaemonservice.xml
- xmlServiceFile.path = c:$$APP_RESOURCE_DIR/xmldata
- DEPLOYMENT += xmlServiceFile
-
-
- }
|