A library for the QUICR Name and Namespace type definitions.
To include qname in your project, simply add qname or quicr::name to your target_link_libraries:
target_link_libraries(project_name PUBLIC/PRIVATE/INTERFACE qname)
# Or
target_link_libraries(project_name PUBLIC/PRIVATE/INTERFACE quicr::name)To build qname on it's own, simply use
cmake -B build
cmake --build buildTo build with tests, simply add the BUILD_TESTING flag during configuration:
cmake -B build -DBUILD_TESTING=ONTo build with benchmarking, simply add the BUILD_BENCHMARKING flag during configuration:
cmake -B build -DBUILD_BENCHMARKING=ONExample of a full build configuration, including testing and benchmarking:
cmake -B build -DBUILD_TESTING=ON -DBUILD_BENCHMARKING=ON
cmake --build build