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