solitaire.pro 725 B

1234567891011121314151617181920212223242526272829303132333435
  1. QT += core gui webkit declarative network
  2. CONFIG += qt-components
  3. TARGET = solitaire
  4. TEMPLATE = app
  5. VERSION = 0.3.1
  6. SOURCES += src/main.cpp \
  7. src/mywebview.cpp \
  8. src/qdeclarativewebview.cpp
  9. HEADERS += src/mywebview.h \
  10. src/qdeclarativewebview_p.h
  11. OTHER_FILES += \
  12. html/*.* \
  13. qml/*.*
  14. symbian {
  15. TARGET = Solitaire
  16. TARGET.UID3 = 0xE7516D55
  17. TARGET.EPOCHEAPSIZE = 0x020000 0x6000000
  18. TARGET.CAPABILITY += \
  19. NetworkServices \
  20. ReadUserData \
  21. WriteUserData \
  22. LocalServices \
  23. UserEnvironment
  24. qmlFiles.sources = qml
  25. htmlFiles.sources = html
  26. DEPLOYMENT += qmlFiles htmlFiles
  27. }