nfcsettingsapplication.pro 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Add files and directories to ship with the application
  2. # by adapting the examples below.
  3. files.source = loc/*.qm
  4. # dir1.source = mydir
  5. DEPLOYMENTFOLDERS = files #dir1
  6. symbian:TARGET.UID3 = 0xE3FFD442
  7. # Allow network access on Symbian
  8. #symbian:TARGET.CAPABILITY += NetworkServices
  9. # If your application uses the Qt Mobility libraries, uncomment
  10. # the following lines and add the respective components to the
  11. # MOBILITY variable.
  12. # CONFIG += mobility
  13. # MOBILITY +=
  14. SOURCES += main.cpp mainwindow.cpp widget.cpp
  15. HEADERS += main.h mainwindow.h widget.h
  16. FORMS += mainwindow.ui widget.ui
  17. # Localisation support.
  18. CODECFORTR = UTF-8
  19. TRANSLATIONS += loc/$${TARGET}_en.ts \
  20. loc/$${TARGET}_ar.ts \
  21. loc/$${TARGET}_zh_HK.ts \
  22. loc/$${TARGET}_zh_CN.ts \
  23. loc/$${TARGET}_zh_TW.ts \
  24. loc/$${TARGET}_cs.ts \
  25. loc/$${TARGET}_da.ts \
  26. loc/$${TARGET}_nl.ts \
  27. loc/$${TARGET}_en_US.ts \
  28. loc/$${TARGET}_fi.ts \
  29. loc/$${TARGET}_fr.ts \
  30. loc/$${TARGET}_fr_CA.ts \
  31. loc/$${TARGET}_de.ts \
  32. loc/$${TARGET}_el.ts \
  33. loc/$${TARGET}_he.ts \
  34. loc/$${TARGET}_hi.ts \
  35. loc/$${TARGET}_hu.ts \
  36. loc/$${TARGET}_id.ts \
  37. loc/$${TARGET}_it.ts \
  38. loc/$${TARGET}_ms.ts \
  39. loc/$${TARGET}_no.ts \
  40. loc/$${TARGET}_pl.ts \
  41. loc/$${TARGET}_pt.ts \
  42. loc/$${TARGET}_pt_BR.ts \
  43. loc/$${TARGET}_ro.ts \
  44. loc/$${TARGET}_ru.ts \
  45. loc/$${TARGET}_sk.ts \
  46. loc/$${TARGET}_es.ts \
  47. loc/$${TARGET}_es_419.ts \
  48. loc/$${TARGET}_sv.ts \
  49. loc/$${TARGET}_th.ts \
  50. loc/$${TARGET}_tr.ts \
  51. loc/$${TARGET}_uk.ts \
  52. loc/$${TARGET}_vi.ts
  53. # add NfcSettings support
  54. include(nfcsettings/nfcsettings.pri)
  55. # Please do not modify the following two lines. Required for deployment.
  56. include(deployment.pri)
  57. qtcAddDeployment()