$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2024-12-07 14:14:35
Matt Borland wrote:
> Dear all,
>
> The review of Hash2 by Peter Dimov and Christian Mazakas begins today
> Saturday, December 7th through Sunday December 15th, 2024.
>
> Code: https://github.com/pdimov/hash2
> Docs: https://pdimov.github.io/hash2/
I know that many do not want to clone the entire Boost to place the
library in libs/hash2, so I've added support for building it with CMake
as a standalone project - it uses FetchContent to acquire the necessary
Boost dependencies.
By default `cmake --build .` builds the benchmark and the examples;
if you want to build and run the tests, use
cmake --build . --target tests
ctest
For Windows, add `--config Debug` to the build line and `-C Debug` to
the ctest line (or Release.)