2015-03-08 13:01:23 +01:00
|
|
|
config BR2_PACKAGE_JSONCPP
|
2017-04-22 19:17:56 +02:00
|
|
|
bool "jsoncpp"
|
2015-08-11 09:46:46 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
2015-03-08 13:01:23 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
help
|
|
|
|
JsonCpp is a C++ library that allows manipulating JSON
|
|
|
|
values, including serialization and deserialization to and
|
2015-04-23 00:14:34 +02:00
|
|
|
from strings. It can also preserve existing comment in
|
2015-03-08 13:01:23 +01:00
|
|
|
unserialization/serialization steps, making it a convenient
|
|
|
|
format to store user input files.
|
|
|
|
|
|
|
|
https://github.com/open-source-parsers/jsoncpp
|
|
|
|
|
2015-08-11 09:46:46 +02:00
|
|
|
comment "jsoncpp needs a toolchain w/ C++, gcc >= 4.7"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|