2
1

Config.in 710 B

12345678910111213141516171819202122232425
  1. comment "python-pyqt needs a toolchain w/ C++, threads"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  4. config BR2_PACKAGE_PYTHON_PYQT
  5. bool "python-pyqt"
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # qt
  8. depends on BR2_USE_MMU # qt
  9. select BR2_PACKAGE_QT
  10. select BR2_PACKAGE_PYTHON_SIP
  11. help
  12. PyQt4 for Qt Embedded 4 bindings.
  13. http://www.riverbankcomputing.com/software/pyqt/
  14. if BR2_PACKAGE_PYTHON_PYQT
  15. config BR2_PACKAGE_PYTHON_PYQT_ARCH_USES_QREAL_FLOAT
  16. bool
  17. default y if BR2_arm || BR2_armeb
  18. default y if BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb
  19. default y if (BR2_mipsel || BR2_mips) && BR2_PACKAGE_QT_EMBEDDED
  20. endif