Config.in 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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_EXAMPLES
  25. bool "Compile and install examples (with code)"
  26. select BR2_PACKAGE_QT5BASE_NETWORK
  27. select BR2_PACKAGE_QT5BASE_XML
  28. help
  29. If unsure, say N.
  30. config BR2_PACKAGE_QT5BASE_NETWORK
  31. bool "network module"
  32. help
  33. This options enables the Qt5Network library.
  34. config BR2_PACKAGE_QT5BASE_CONCURRENT
  35. bool "concurrent module"
  36. help
  37. This options enables the Qt5Concurrent library.
  38. config BR2_PACKAGE_QT5BASE_SQL
  39. bool "sql module"
  40. help
  41. This options enables the Qt5Sql library.
  42. if BR2_PACKAGE_QT5BASE_SQL
  43. config BR2_PACKAGE_QT5BASE_MYSQL
  44. bool "MySQL Plugin"
  45. select BR2_PACKAGE_MYSQL
  46. select BR2_PACKAGE_NCURSES
  47. select BR2_PACKAGE_READLINE
  48. depends on BR2_USE_MMU # mysql
  49. help
  50. Build MySQL plugin
  51. If unsure, say n.
  52. choice
  53. prompt "SQLite 3 support"
  54. default BR2_PACKAGE_QT5BASE_SQLITE_NONE
  55. help
  56. Select SQLite support.
  57. config BR2_PACKAGE_QT5BASE_SQLITE_NONE
  58. bool "No sqlite support"
  59. help
  60. Do not compile any kind of SQLite support.
  61. config BR2_PACKAGE_QT5BASE_SQLITE_QT
  62. bool "Qt SQLite"
  63. help
  64. Use Qt bundled SQLite support.
  65. config BR2_PACKAGE_QT5BASE_SQLITE_SYSTEM
  66. bool "System SQLite"
  67. select BR2_PACKAGE_SQLITE
  68. help
  69. Use system SQLite.
  70. endchoice
  71. endif
  72. config BR2_PACKAGE_QT5BASE_TEST
  73. bool "test module"
  74. help
  75. This options enables the Qt5Test library.
  76. config BR2_PACKAGE_QT5BASE_XML
  77. bool "XML module"
  78. help
  79. This options enables the Qt5Xml library.
  80. config BR2_PACKAGE_QT5BASE_GUI
  81. bool "gui module"
  82. # At least one graphic backend must be enabled, so enable
  83. # linuxfb if nothing is enabled.
  84. select BR2_PACKAGE_QT5BASE_LINUXFB if \
  85. !BR2_PACKAGE_QT5BASE_DIRECTFB && \
  86. !BR2_PACKAGE_QT5BASE_XCB && \
  87. !BR2_PACKAGE_QT5BASE_EGLFS
  88. help
  89. This option enables the Qt5Gui library.
  90. if BR2_PACKAGE_QT5BASE_GUI
  91. config BR2_PACKAGE_QT5BASE_WIDGETS
  92. bool "widgets module"
  93. select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_QT5BASE_XCB
  94. help
  95. This option enables the Qt5Widgets library.
  96. config BR2_PACKAGE_QT5BASE_LINUXFB
  97. bool "linuxfb support"
  98. config BR2_PACKAGE_QT5BASE_DIRECTFB
  99. bool "directfb support"
  100. select BR2_PACKAGE_DIRECTFB
  101. config BR2_PACKAGE_QT5BASE_XCB
  102. bool "X.org XCB support"
  103. depends on BR2_PACKAGE_XORG7
  104. select BR2_PACKAGE_LIBX11
  105. select BR2_PACKAGE_LIBXCB
  106. select BR2_PACKAGE_XCB_UTIL_IMAGE
  107. select BR2_PACKAGE_XCB_UTIL_KEYSYMS
  108. select BR2_PACKAGE_XCB_UTIL_WM
  109. select BR2_PACKAGE_LIBXKBCOMMON
  110. comment "X.org XCB backend available if X.org is enabled"
  111. depends on !BR2_PACKAGE_XORG7
  112. config BR2_PACKAGE_QT5BASE_EGLFS
  113. bool "eglfs support"
  114. depends on BR2_PACKAGE_HAS_OPENGL_EGL
  115. depends on BR2_PACKAGE_HAS_LIBGLES
  116. comment "eglfs backend available if OpenGLES and EGL are enabled"
  117. depends on !BR2_PACKAGE_HAS_OPENGL_EGL || !BR2_PACKAGE_HAS_LIBGLES
  118. config BR2_PACKAGE_QT5BASE_PRINTSUPPORT
  119. bool "print support module"
  120. select BR2_PACKAGE_QT5BASE_WIDGETS
  121. help
  122. This option enables the Qt5PrintSupport
  123. config BR2_PACKAGE_QT5BASE_FONTCONFIG
  124. bool "fontconfig support"
  125. select BR2_PACKAGE_FONTCONFIG
  126. help
  127. This option enables Fontconfig and Freetype support using
  128. the system fontconfig and freetype2 libraries.
  129. config BR2_PACKAGE_QT5BASE_GIF
  130. bool "GIF support"
  131. help
  132. This compiles and installs the plugin for GIF reading support.
  133. config BR2_PACKAGE_QT5BASE_JPEG
  134. bool "JPEG support"
  135. select BR2_PACKAGE_JPEG
  136. help
  137. This option enables JPEG support using the system libjpeg
  138. library.
  139. config BR2_PACKAGE_QT5BASE_PNG
  140. bool "PNG support"
  141. select BR2_PACKAGE_LIBPNG
  142. help
  143. This option enables PNG support using the system libpng
  144. library.
  145. endif
  146. config BR2_PACKAGE_QT5BASE_DBUS
  147. bool "DBus module"
  148. select BR2_PACKAGE_DBUS
  149. depends on BR2_TOOLCHAIN_HAS_THREADS
  150. depends on BR2_USE_MMU
  151. help
  152. This option enables the D-Bus module.
  153. config BR2_PACKAGE_QT5BASE_ICU
  154. bool "Enable ICU support"
  155. select BR2_PACKAGE_ICU
  156. depends on !BR2_arc # icu -> atomic builtins
  157. depends on !BR2_BINFMT_FLAT # icu
  158. help
  159. This option enables ICU support in Qt5. This is for example
  160. needed for Qt5Webkit.
  161. config BR2_PACKAGE_QT5BASE_TSLIB
  162. bool "Enable Tslib support"
  163. depends on !BR2_PREFER_STATIC_LIB # dlopen
  164. select BR2_PACKAGE_TSLIB
  165. help
  166. This options enables the Tslib plugin
  167. comment "tslib support needs a toolchain w/ dynamic library"
  168. depends on BR2_PREFER_STATIC_LIB
  169. endif