Config.in 742 B

1234567891011121314151617181920
  1. comment "python-libconfig needs a toolchain w/ C++, threads"
  2. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  3. config BR2_PACKAGE_PYTHON_LIBCONFIG
  4. bool "python-libconfig"
  5. select BR2_PACKAGE_BOOST
  6. select BR2_PACKAGE_BOOST_PYTHON
  7. select BR2_PACKAGE_LIBCONFIG
  8. depends on BR2_INSTALL_LIBSTDCPP
  9. depends on BR2_TOOLCHAIN_HAS_THREADS
  10. help
  11. Python bindings to the C++ library libconfig
  12. Libconfig is a simple library for manipulating structured
  13. configuration files. The file format is more compact and more
  14. readable than XML. And unlike XML, it is type-aware, so it is
  15. not necessary to do string parsing in application code.
  16. http://www.hyperrealm.com/libconfig/
  17. https://github.com/cnangel/python-libconfig