Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 561 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 561 Bytes

buffer-c++

Read standard C & C++ data types from buffer.

Please, read header for more information.

Requirements

  • CMake
  • conan 2.0

Compilation

$ mkdir build && cd build
$ conan install .. -pr=default -pr:b=default --output-folder .
$ cmake .. -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
$ cmake --build . --parallel 4

To enable and compile the tests:

$ cmake .. -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DTESTS=TRUE
$ cmake --build . --parallel 4