xref: /OK3568_Linux_fs/buildroot/package/qt5/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_QT5_GL_AVAILABLE
2	bool "OpenGL available"
3	default y
4	depends on BR2_PACKAGE_HAS_LIBGL || BR2_PACKAGE_HAS_LIBGLES
5
6config BR2_PACKAGE_QT5_JSCORE_AVAILABLE
7	bool
8	default y
9	# Javascript engine is only available on certain architectures
10	depends on BR2_arm || BR2_aarch64 || BR2_i386 || BR2_x86_64 || BR2_mipsel || BR2_arc
11	# ARM needs BLX, so v5t+
12	depends on !BR2_ARM_CPU_ARMV4
13
14comment "Qt5 needs host g++ >= 5.0, and a toolchain w/ gcc >= 5.0, wchar, NPTL, C++, dynamic library"
15	depends on !BR2_ARM_CPU_ARMV4
16	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
17		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
18		!BR2_HOST_GCC_AT_LEAST_5 || !BR2_TOOLCHAIN_GCC_AT_LEAST_5
19
20menuconfig BR2_PACKAGE_QT5
21	bool "Qt5"
22	depends on BR2_INSTALL_LIBSTDCPP
23	depends on BR2_USE_WCHAR
24	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
25	depends on BR2_HOST_GCC_AT_LEAST_5 # Full C++11
26	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
27	depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
28	depends on !BR2_STATIC_LIBS
29	select BR2_PACKAGE_QT5BASE
30	help
31	  This option enables the Qt5 framework. Sub-options allow to
32	  select which modules should be built.
33
34	  http://qt.io
35
36if BR2_PACKAGE_QT5
37source "package/qt5/qt53d/Config.in"
38source "package/qt5/qt5base/Config.in"
39source "package/qt5/qt5charts/Config.in"
40source "package/qt5/qt5coap/Config.in"
41source "package/qt5/qt5connectivity/Config.in"
42source "package/qt5/qt5declarative/Config.in"
43source "package/qt5/qt5doc/Config.in"
44source "package/qt5/qt5enginio/Config.in"
45source "package/qt5/qt5graphicaleffects/Config.in"
46source "package/qt5/qt5imageformats/Config.in"
47source "package/qt5/qt5knx/Config.in"
48source "package/qt5/qt5location/Config.in"
49source "package/qt5/qt5lottie/Config.in"
50source "package/qt5/qt5mqtt/Config.in"
51source "package/qt5/qt5multimedia/Config.in"
52source "package/qt5/qt5opcua/Config.in"
53source "package/qt5/qt5quick3d/Config.in"
54source "package/qt5/qt5quickcontrols/Config.in"
55source "package/qt5/qt5quickcontrols2/Config.in"
56source "package/qt5/qt5quicktimeline/Config.in"
57source "package/qt5/qt5remoteobjects/Config.in"
58source "package/qt5/qt5script/Config.in"
59source "package/qt5/qt5scxml/Config.in"
60source "package/qt5/qt5sensors/Config.in"
61source "package/qt5/qt5serialbus/Config.in"
62source "package/qt5/qt5serialport/Config.in"
63source "package/qt5/qt5speech/Config.in"
64source "package/qt5/qt5svg/Config.in"
65source "package/qt5/qt5tools/Config.in"
66source "package/qt5/qt5virtualkeyboard/Config.in"
67source "package/qt5/qt5wayland/Config.in"
68source "package/qt5/qt5webchannel/Config.in"
69source "package/qt5/qt5webkit/Config.in"
70source "package/qt5/qt5webengine/Config.in"
71source "package/qt5/qt5webengine-chromium/Config.in"
72source "package/qt5/qt5webengine-chromium-catapult/Config.in"
73source "package/qt5/qt5websockets/Config.in"
74source "package/qt5/qt5webview/Config.in"
75source "package/qt5/qt5x11extras/Config.in"
76source "package/qt5/qt5xmlpatterns/Config.in"
77endif
78