Apache Avro is a data serialization system
Run the following Vcpkg command to install the port.
vcpkg install avro-cpp
The package avro-cpp can be used from CMake via:
find_path(AVROCPP_INCLUDE_DIR avro/Encoder.hh) find_library(AVROCPP_LIBRARY_DEBUG avrocpp PATH_SUFFIXES "debug/lib" REQUIRED) get_filename_component(AVROCPP_ROOT_FIND_DIR ${AVROCPP_INCLUDE_DIR} DIRECTORY) find_library(AVROCPP_LIBRARY_RELEASE avrocpp PATHS "${AVROCPP_ROOT_FIND_DIR}/lib/" REQUIRED NO_DEFAULT_PATH) target_include_directories(main PRIVATE "${AVROCPP_INCLUDE_DIR}") target_link_libraries(main PRIVATE optimized "${AVROCPP_LIBRARY_RELEASE}" debug "${AVROCPP_LIBRARY_DEBUG}")
Support Snappy for compression
Build tests
v2022-11-07#0
Nov 21, 2022
!(windows & static)
apache/avro3K
github.com/apache/avro
7432ae01e9
Apache-2.0
Manifest