filelist.pro 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Copyright (c) 2011-2012 Nokia Corporation.
  2. QT += core gui declarative
  3. CONFIG += mobility qt-components
  4. MOBILITY += systeminfo
  5. TARGET = filelist
  6. VERSION = 1.1
  7. HEADERS += \
  8. src/filehelper.h
  9. SOURCES += \
  10. src/main.cpp \
  11. src/filehelper.cpp
  12. RESOURCES += rsc/common.qrc
  13. symbian {
  14. TARGET = FileListQML
  15. TARGET.UID3 = 0xE63A97B4
  16. TARGET.EPOCSTACKSIZE = 0x14000
  17. TARGET.EPOCHEAPSIZE = 0x1000 0x1800000 # 24MB
  18. LIBS += -lPlatformEnv -lefsrv
  19. OTHER_FILES += \
  20. qml/symbian/*.qml \
  21. qml/symbian/SymbianUIConstants.js
  22. qmlfiles.sources = qml
  23. DEPLOYMENT += qmlfiles
  24. ICON = icons/filelist.svg
  25. }
  26. simulator {
  27. OTHER_FILES += \
  28. qml/symbian/*.qml \
  29. qml/symbian/SymbianUIConstants.js
  30. # Modify the following path if necessary
  31. SHADOW_BLD_PATH = ..\\filelist-build-simulator-Simulator_Qt_for_MinGW_4_4__Qt_SDK__Debug
  32. system(mkdir $${SHADOW_BLD_PATH}\\qml\\symbian)
  33. system(copy qml\\symbian\\*.* $${SHADOW_BLD_PATH}\\qml\\symbian)
  34. }
  35. # End of file.