Config.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. http://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_4_8 # 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. help
  28. This option enables the qdoc host tool.
  29. config BR2_PACKAGE_QT5TOOLS_PIXELTOOL
  30. bool "pixeltool"
  31. select BR2_PACKAGE_QT5BASE_GUI
  32. select BR2_PACKAGE_QT5BASE_WIDGETS
  33. select BR2_PACKAGE_QT5BASE_PNG # saving png images
  34. help
  35. Compile and install the pixeltool program.
  36. config BR2_PACKAGE_QT5TOOLS_QTDIAG
  37. bool "qtdiag"
  38. select BR2_PACKAGE_QT5BASE_GUI
  39. help
  40. Compile and install the qtdiag program.
  41. config BR2_PACKAGE_QT5TOOLS_QTPATHS
  42. bool "qtpaths"
  43. help
  44. Compile and install the qtpaths program.
  45. config BR2_PACKAGE_QT5TOOLS_QTPLUGININFO
  46. bool "qtplugininfo"
  47. help
  48. Compile and install the qtplugininfo program.
  49. endif