From 0198890bfa80041f55f49c285a42847ed74c319c Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Sat, 6 Sep 2025 06:43:28 +0300 Subject: [PATCH] fix(scripts): build example in benchmark Enable example build in benchmark script so hyperfine can run. --- scripts/run_benchmarks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_benchmarks.sh b/scripts/run_benchmarks.sh index 41f1d08..30c3932 100755 --- a/scripts/run_benchmarks.sh +++ b/scripts/run_benchmarks.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -euo pipefail -cmake -S . -B build-bench -DCMAKE_BUILD_TYPE=Release +cmake -S . -B build-bench -DCMAKE_BUILD_TYPE=Release -DHMACCPP_BUILD_EXAMPLES=ON cmake --build build-bench --config Release hyperfine "./build-bench/example"