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