1config BR2_PACKAGE_JSONCPP 2 bool "jsoncpp" 3 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11 4 depends on BR2_INSTALL_LIBSTDCPP 5 help 6 JsonCpp is a C++ library that allows manipulating JSON 7 values, including serialization and deserialization to and 8 from strings. It can also preserve existing comment in 9 unserialization/serialization steps, making it a convenient 10 format to store user input files. 11 12 https://github.com/open-source-parsers/jsoncpp 13 14comment "jsoncpp needs a toolchain w/ C++, gcc >= 4.7" 15 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 16