Config.in 797 B

123456789101112131415161718192021
  1. comment "python-libconfig needs a toolchain w/ C++, largefile, threads"
  2. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !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_LARGEFILE
  10. depends on BR2_TOOLCHAIN_HAS_THREADS
  11. help
  12. Python bindings to the C++ library libconfig
  13. Libconfig is a simple library for manipulating structured
  14. configuration files. The file format is more compact and more
  15. readable than XML. And unlike XML, it is type-aware, so it is
  16. not necessary to do string parsing in application code.
  17. http://www.hyperrealm.com/libconfig/
  18. https://github.com/cnangel/python-libconfig