Config.in 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. config BR2_PACKAGE_QT5BASE
  2. bool "qt5base"
  3. select BR2_PACKAGE_ZLIB
  4. select BR2_PACKAGE_PCRE
  5. select BR2_PACKAGE_PCRE_16
  6. help
  7. Qt is a cross-platform application and UI framework for
  8. developers using C++.
  9. This package corresponds to the qt5base module, which
  10. contains the base Qt libraries: QtCore, QtNetwork, QtGui,
  11. QtWidgets, etc.
  12. http://qt-project.org
  13. if BR2_PACKAGE_QT5BASE
  14. config BR2_PACKAGE_QT5BASE_LICENSE_APPROVED
  15. bool "Approve free license"
  16. help
  17. Select this if you approve one of the available free licenses for the
  18. Qt5 library.
  19. By doing this you will not be asked while the library is compiled.
  20. Please read and understand the license terms before approving this.
  21. LGPL v2.1: http://qt-project.org/doc/qt-5.0/qtdoc/lgpl.html
  22. GPL v3.0: http://qt-project.org/doc/qt-5.0/qtdoc/gpl.html
  23. See also http://qt-project.org/doc/qt-5.0/qtdoc/licensing.html
  24. config BR2_PACKAGE_QT5BASE_NETWORK
  25. bool "network module"
  26. help
  27. This options enables the Qt5Network library.
  28. config BR2_PACKAGE_QT5BASE_CONCURRENT
  29. bool "concurrent module"
  30. help
  31. This options enables the Qt5Concurrent library.
  32. config BR2_PACKAGE_QT5BASE_SQL
  33. bool "sql module"
  34. help
  35. This options enables the Qt5Sql library.
  36. config BR2_PACKAGE_QT5BASE_TEST
  37. bool "test module"
  38. help
  39. This options enables the Qt5Test library.
  40. config BR2_PACKAGE_QT5BASE_XML
  41. bool "XML module"
  42. help
  43. This options enables the Qt5Xml library.
  44. config BR2_PACKAGE_QT5BASE_GUI
  45. bool "gui module"
  46. # At least one graphic backend must be enabled, so enable
  47. # linuxfb if nothing is enabled.
  48. select BR2_PACKAGE_QT5BASE_LINUXFB if \
  49. !BR2_PACKAGE_QT5BASE_DIRECTFB && \
  50. !BR2_PACKAGE_QT5BASE_XCB && \
  51. !BR2_PACKAGE_QT5BASE_EGLFS
  52. help
  53. This option enables the Qt5Gui library.
  54. if BR2_PACKAGE_QT5BASE_GUI
  55. config BR2_PACKAGE_QT5BASE_WIDGETS
  56. bool "widgets module"
  57. help
  58. This option enables the Qt5Widgets library.
  59. config BR2_PACKAGE_QT5BASE_LINUXFB
  60. bool "linuxfb support"
  61. config BR2_PACKAGE_QT5BASE_DIRECTFB
  62. bool "directfb support"
  63. select BR2_PACKAGE_DIRECTFB
  64. config BR2_PACKAGE_QT5BASE_XCB
  65. bool "X.org XCB support"
  66. depends on BR2_PACKAGE_XORG7
  67. select BR2_PACKAGE_LIBX11
  68. select BR2_PACKAGE_LIBXCB
  69. select BR2_PACKAGE_XCB_UTIL_IMAGE
  70. select BR2_PACKAGE_XCB_UTIL_KEYSYMS
  71. select BR2_PACKAGE_XCB_UTIL_WM
  72. comment "X.org XCB backend available if X.org is enabled"
  73. depends on !BR2_PACKAGE_XORG7
  74. config BR2_PACKAGE_QT5BASE_EGLFS
  75. bool "eglfs support"
  76. depends on BR2_PACKAGE_HAS_OPENGL_EGL
  77. depends on BR2_PACKAGE_HAS_OPENGL_ES
  78. comment "eglfs backend available if OpenGLES and EGL are enabled"
  79. depends on !BR2_PACKAGE_HAS_OPENGL_EGL || !BR2_PACKAGE_HAS_OPENGL_ES
  80. config BR2_PACKAGE_QT5BASE_PRINTSUPPORT
  81. bool "print support module"
  82. select BR2_PACKAGE_QT5BASE_WIDGETS
  83. help
  84. This option enables the Qt5PrintSupport
  85. config BR2_PACKAGE_QT5BASE_FONTCONFIG
  86. bool "fontconfig support"
  87. select BR2_PACKAGE_FONTCONFIG
  88. help
  89. This option enables Fontconfig and Freetype support using
  90. the system fontconfig and freetype2 libraries.
  91. config BR2_PACKAGE_QT5BASE_GIF
  92. bool "GIF support"
  93. help
  94. This compiles and installs the plugin for GIF reading support.
  95. config BR2_PACKAGE_QT5BASE_JPEG
  96. bool "JPEG support"
  97. select BR2_PACKAGE_JPEG
  98. help
  99. This option enables JPEG support using the system libjpeg
  100. library.
  101. config BR2_PACKAGE_QT5BASE_PNG
  102. bool "PNG support"
  103. select BR2_PACKAGE_LIBPNG
  104. help
  105. This option enables PNG support using the system libpng
  106. library.
  107. endif
  108. config BR2_PACKAGE_QT5BASE_DBUS
  109. bool "DBus module"
  110. select BR2_PACKAGE_DBUS
  111. depends on BR2_TOOLCHAIN_HAS_THREADS
  112. depends on BR2_USE_MMU
  113. help
  114. This option enables the D-Bus module.
  115. config BR2_PACKAGE_QT5BASE_ICU
  116. bool "Enable ICU support"
  117. select BR2_PACKAGE_ICU
  118. help
  119. This option enables ICU support in Qt5. This is for example
  120. needed for Qt5Webkit.
  121. endif