/qname

Primary LanguageC++BSD 2-Clause "Simplified" LicenseBSD-2-Clause

qname

CMake

A library for the QUICR Name and Namespace type definitions.

Including in your Project

CMake

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)

Building

To build qname on it's own, simply use

cmake -B build
cmake --build build

To build with tests, simply add the BUILD_TESTING flag during configuration:

cmake -B build -DBUILD_TESTING=ON

To build with benchmarking, simply add the BUILD_BENCHMARKING flag during configuration:

cmake -B build -DBUILD_BENCHMARKING=ON

Example of a full build configuration, including testing and benchmarking:

cmake -B build -DBUILD_TESTING=ON -DBUILD_BENCHMARKING=ON
cmake --build build