21c89819a4
Valijson is a header-only JSON Schema Validation library for C++. Signed-off-by: Santosh Multhalli <santosh.multhalli@rockwellcollins.com> [Thomas: - fix license, it's BSD-2c, not BSD-3c. - fix propagation of boost dependencies, BR2_PACKAGE_BOOST_ARCH_SUPPORTS was missing. - remove useless blank line in Config.in - tweak commit log.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
767 B
Plaintext
21 lines
767 B
Plaintext
config BR2_PACKAGE_VALIJSON
|
|
bool "valijson"
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_BOOST_REGEX
|
|
help
|
|
Valijson is a header-only JSON Schema Validation library for
|
|
C++. Valijson provides a simple validation API that allows
|
|
you load JSON Schemas, and validate documents loaded by one
|
|
of several supported parser libraries like boost, jsoncpp,
|
|
rapidjson and picoJSON.
|
|
|
|
https://github.com/tristanpenman/valijson
|
|
|
|
comment "valijson needs a toolchain w/ C++, threads, wchar support"
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|