Skip to content

Commit

Permalink
debug2
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Jul 2, 2024
1 parent 9ed6b5a commit 087fb91
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/package-lock.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CPMDeclarePackage (simde
DOWNLOAD_ONLY YES
GITHUB_REPOSITORY simd-everywhere/simde)
# benchmark
set (HIBF_BENCHMARK_VERSION 1.8.2)
set (HIBF_BENCHMARK_VERSION 1.8.4)
CPMDeclarePackage (benchmark
NAME benchmark
VERSION ${HIBF_BENCHMARK_VERSION}
Expand Down
3 changes: 3 additions & 0 deletions test/header/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ macro (hibf_header_test component header_base_path exclude_regex)
endmacro ()

CPMGetPackage (benchmark)
if (benchmark_ADDED)
set_target_properties (benchmark PROPERTIES CXX_STANDARD 20)
endif ()
CPMGetPackage (googletest)

# note: hibf/version.hpp is one of the only header that is not required to have a hibf/platform.hpp include
Expand Down
3 changes: 3 additions & 0 deletions test/performance/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,8 @@ macro (hibf_benchmark benchmark_cpp)
endmacro ()

CPMGetPackage (benchmark)
if (benchmark_ADDED)
set_target_properties (benchmark PROPERTIES CXX_STANDARD 20)
endif ()

add_subdirectories ()

0 comments on commit 087fb91

Please sign in to comment.