Config.in 682 B

123456789101112131415161718
  1. comment "tclap needs a toolchain w/ C++"
  2. depends on !BR2_INSTALL_LIBSTDCPP
  3. config BR2_PACKAGE_TCLAP
  4. bool "tclap"
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. help
  7. This is a small, flexible library that provides a simple
  8. interface for defining and accessing command line
  9. arguments. It was initially inspired by the user friendly
  10. CLAP library. The difference is that this library is
  11. templatized, so the argument class is type independent. Type
  12. independence avoids identical-except-for-type objects, such
  13. as IntArg, FloatArg, and StringArg. While the library is not
  14. strictly compliant with the GNU or POSIX standards, it is
  15. close.
  16. http://tclap.sourceforge.net/