Config.in 1.7 KB

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