qmultiwinexample.pro 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Copyright (c) 2010 Nokia Corporation.
  2. QT += core gui
  3. VERSION = 1.0.0
  4. TARGET = qmultiwinexample
  5. TEMPLATE = app
  6. SOURCES += src/main.cpp \
  7. src/mainwindow.cpp \
  8. src/imageloader.cpp \
  9. src/imagewidget.cpp \
  10. src/keyeventlistener.cpp
  11. HEADERS += src/mainwindow.h \
  12. src/imageloader.h \
  13. src/imagewidget.h \
  14. src/keyeventlistener.h
  15. symbian {
  16. TARGET = QMultiWinExample
  17. TARGET.UID3 = 0xE8118bd5
  18. TARGET.EPOCHEAPSIZE = 0x100000 0x2000000
  19. TARGET.EPOCSTACKSIZE = 0x14000
  20. }
  21. maemo5 {
  22. isEmpty(PREFIX):PREFIX = /usr
  23. BINDIR = $$PREFIX/bin
  24. DATADIR = $$PREFIX/share
  25. DEFINES += DATADIR=\\\"$$DATADIR\\\" \
  26. PKGDATADIR=\\\"$$PKGDATADIR\\\"
  27. INSTALLS += target \
  28. desktop
  29. target.path = $$BINDIR
  30. desktop.path = $$DATADIR/applications/hildon
  31. desktop.files += src/qmultiwinexample.desktop
  32. }