xref: /OK3568_Linux_fs/buildroot/package/qt5/qt5tools/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_QT5TOOLS
2	bool "qt5tools"
3	help
4	  Qt is a cross-platform application and UI framework for
5	  developers using C++.
6
7	  Qt Tools provides tools facilitate the development
8	  and design of applications.
9
10	  https://doc.qt.io/qt-5/qtmodules.html#qt-tools
11
12if BR2_PACKAGE_QT5TOOLS
13
14config BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS
15	bool "Linguist host tools (lconvert, lrelease, lupdate)"
16	help
17	  This option enables the linguist host tools
18	  lconvert, lrelease and lupdate.
19
20config BR2_PACKAGE_QT5TOOLS_QDOC_TOOL
21	bool "qdoc host tool"
22	# Needs llvm-config and libclang for the host, which is not
23	# currently supported in Buildroot, unless the target is
24	# already supported by llvm.
25	depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS # llvm, clang
26	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # llvm, clang
27	depends on BR2_TOOLCHAIN_HAS_THREADS # llvm, clang
28	depends on BR2_INSTALL_LIBSTDCPP # llvm, clang
29	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # llvm, clang
30	depends on !BR2_STATIC_LIBS # llvm, clang
31	depends on BR2_USE_WCHAR # llvm, clang
32	depends on BR2_HOST_GCC_AT_LEAST_5 # llvm, clang
33	help
34	  This option enables the qdoc host tool.
35
36config BR2_PACKAGE_QT5TOOLS_DESIGNER
37	bool "designer"
38	select BR2_PACKAGE_QT5BASE_GUI
39	select BR2_PACKAGE_QT5BASE_WIDGETS
40	help
41	  Compile and install the designer program.
42
43config BR2_PACKAGE_QT5TOOLS_PIXELTOOL
44	bool "pixeltool"
45	select BR2_PACKAGE_QT5BASE_GUI
46	select BR2_PACKAGE_QT5BASE_WIDGETS
47	select BR2_PACKAGE_QT5BASE_PNG # saving png images
48	help
49	  Compile and install the pixeltool program.
50
51config BR2_PACKAGE_QT5TOOLS_QTDIAG
52	bool "qtdiag"
53	select BR2_PACKAGE_QT5BASE_GUI
54	help
55	  Compile and install the qtdiag program.
56
57config BR2_PACKAGE_QT5TOOLS_QTPATHS
58	bool "qtpaths"
59	help
60	  Compile and install the qtpaths program.
61
62config BR2_PACKAGE_QT5TOOLS_QTPLUGININFO
63	bool "qtplugininfo"
64	help
65	  Compile and install the qtplugininfo program.
66
67endif
68