qwhowheredaemon.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Copyright (c) 2011 Nokia Corporation
  2. TEMPLATE = app
  3. TARGET = qwhowheredaemon
  4. QT += core
  5. QT -= gui
  6. VERSION = 1.0.1
  7. # Does not have Symbian icon
  8. CONFIG += no_icon
  9. # For QtMobility
  10. CONFIG += mobility
  11. MOBILITY = location messaging serviceframework
  12. HEADERS += Daemon.h \
  13. Message.h
  14. SOURCES += Daemon.cpp \
  15. Message.cpp \
  16. main.cpp
  17. OTHER_FILES += wwdaemonservice.xml
  18. # Symbian
  19. symbian {
  20. load(data_caging_paths)
  21. TARGET.EPOCSTACKSIZE = 0x14000
  22. TARGET.EPOCHEAPSIZE = 0x020000 0x3000000
  23. TARGET.UID3 = 0xE2E04FD2
  24. # For QtMobility
  25. # NOTE: ReadDeviceData and WriteDeviceData needs developer signing
  26. TARGET.CAPABILITY = NetworkServices \
  27. Location \
  28. ReadUserData \
  29. WriteUserData \
  30. LocalServices \
  31. UserEnvironment \
  32. ReadDeviceData \
  33. WriteDeviceData
  34. # Daemon as Qt Mobility Service FW service
  35. xmlServiceFile.sources = wwdaemonservice.xml
  36. xmlServiceFile.path = c:$$APP_RESOURCE_DIR/xmldata
  37. DEPLOYMENT += xmlServiceFile
  38. # Writes log into C:\Data\whowheredaemon.dat file
  39. #DEFINES += WRITE_LOG_TO_FILE
  40. }