2
1

Config.in 597 B

123456789101112131415161718
  1. comment "python-pyqt5 needs a toolchain w/ wchar, NPTL, C++, dynamic library"
  2. depends on !BR2_PACKAGE_QT
  3. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  4. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
  5. config BR2_PACKAGE_PYTHON_PYQT5
  6. bool "python-pyqt5"
  7. depends on BR2_INSTALL_LIBSTDCPP
  8. depends on BR2_USE_WCHAR # qt5
  9. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # qt5
  10. depends on !BR2_STATIC_LIBS # qt5
  11. depends on !BR2_PACKAGE_QT # qt5
  12. select BR2_PACKAGE_QT5
  13. select BR2_PACKAGE_PYTHON_SIP
  14. help
  15. Python bindings for Qt 5
  16. http://www.riverbankcomputing.com/software/pyqt/