quicksand.pro 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # Copyright (c) 2010 Nokia Corporation.
  2. TARGET = quicksand
  3. TEMPLATE = app
  4. VERSION = 1.0.0
  5. INCLUDEPATH += sandbox_src teng_src
  6. Qt += core \
  7. gui
  8. maemo5 {
  9. CONFIG += qdbus
  10. }
  11. RESOURCES = src/resources.qrc
  12. SOURCES += src/main.cpp \
  13. src/widget.cpp \
  14. src/mainwindow.cpp \
  15. src/toolbarwidget.cpp \
  16. src/toolbarbutton.cpp \
  17. sandbox_src/vsandbox.cpp \
  18. sandbox_src/vsand_grid.cpp \
  19. sandbox_src/table_texture.cpp \
  20. sandbox_src/sand_texture.cpp \
  21. teng_src/TSurface_RGBA8888.cpp \
  22. teng_src/TString.cpp \
  23. teng_src/TMath.cpp \
  24. teng_src/TEngine.cpp \
  25. teng_src/TBase.cpp \
  26. teng_src/T2DMath.cpp \
  27. teng_src/TDrawHelpers.cpp \
  28. sandbox_src/reset_images.cpp \
  29. sandbox_src/intro_sandpaint.cpp \
  30. sandbox_src/intro_flare.cpp \
  31. sandbox_src/intro_digia.cpp \
  32. sandbox_src/vsand_intro.cpp
  33. HEADERS += src/widget.h \
  34. src/mainwindow.h \
  35. src/toolbarwidget.h \
  36. src/toolbarbutton.h \
  37. sandbox_src/vsand_grid.h \
  38. sandbox_src/vsandbox.h \
  39. teng_src/TString.h \
  40. teng_src/TMath.h \
  41. teng_src/TEngine.h \
  42. teng_src/TBase.h \
  43. teng_src/T2DMath.h \
  44. teng_src/TSurface_RGBA8888.h \
  45. teng_src/TDrawHelpers.h \
  46. sandbox_src/vsand_intro.h
  47. symbian {
  48. CONFIG += mobility
  49. MOBILITY = sensors contacts messaging
  50. HEADERS += src/ContactsDialog.h \
  51. src/CameraFileObserver.h
  52. SOURCES += src/ContactsDialog.cpp \
  53. src/CameraFileObserver.cpp
  54. TARGET = QuickSand
  55. ICON = src/icon.svg
  56. TARGET.UID3 = 0xE426d043
  57. TARGET.EPOCHEAPSIZE = 0x100000 0x2000000
  58. TARGET.EPOCSTACKSIZE = 0x14000
  59. LIBS += -lcone -leikcore -lavkon
  60. TARGET.CAPABILITY = NetworkServices \
  61. Location \
  62. ReadUserData \
  63. WriteUserData \
  64. LocalServices \
  65. UserEnvironment \
  66. ReadDeviceData \
  67. WriteDeviceData
  68. }
  69. maemo5 {
  70. CONFIG += mobility
  71. MOBILITY = sensors contacts messaging
  72. HEADERS += src/ContactsDialog.h
  73. SOURCES += src/ContactsDialog.cpp
  74. isEmpty(PREFIX):PREFIX = /usr
  75. BINDIR = $$PREFIX/bin
  76. DATADIR = $$PREFIX/share
  77. DEFINES += DATADIR=\\\"$$DATADIR\\\" \
  78. PKGDATADIR=\\\"$$PKGDATADIR\\\"
  79. INSTALLS += target \
  80. desktop \
  81. icon64
  82. target.path = $$BINDIR
  83. desktop.path = $$DATADIR/applications/hildon
  84. desktop.files += quicksand.desktop
  85. icon64.path = $$DATADIR/icons/hicolor/64x64/apps
  86. icon64.files += icon/64x64/quicksand.png
  87. }