1*4882a593Smuzhiyunconfig BR2_PACKAGE_CEREAL 2*4882a593Smuzhiyun bool "cereal" 3*4882a593Smuzhiyun depends on BR2_USE_WCHAR 4*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11 7*4882a593Smuzhiyun help 8*4882a593Smuzhiyun cereal is a header-only C++11 serialization library. 9*4882a593Smuzhiyun cereal takes arbitrary data types and reversibly turns them 10*4882a593Smuzhiyun into different representations, such as compact binary 11*4882a593Smuzhiyun encodings, XML or JSON. cereal was designed to be fast, 12*4882a593Smuzhiyun light-weight, and easy to extend - it has no external 13*4882a593Smuzhiyun dependencies and can be easily bundled with other code or used 14*4882a593Smuzhiyun standalone. 15*4882a593Smuzhiyun 16*4882a593Smuzhiyun https://github.com/USCiLab/cereal 17*4882a593Smuzhiyun 18*4882a593Smuzhiyuncomment "cereal needs a toolchain w/ C++, gcc >= 4.7, threads, wchar" 19*4882a593Smuzhiyun depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 20*4882a593Smuzhiyun !BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 21