Skip to content

Commit 8b6118c

Browse files
authored
fix: disable CRoaring tests and microbenchmarks (#241)
Previously, we mistakenly used the outdated option BUILD_TESTING for CRoaring, change it to ENABLE_ROARING_TESTS, and also disable ENABLE_ROARING_MICROBENCHMARKS.
1 parent 3b945a0 commit 8b6118c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

cmake_modules/IcebergThirdpartyToolchain.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,8 @@ endfunction()
267267
function(resolve_croaring_dependency)
268268
prepare_fetchcontent()
269269

270-
set(BUILD_TESTING
271-
OFF
272-
CACHE BOOL "Disable CRoaring tests" FORCE)
270+
set(ENABLE_ROARING_TESTS OFF)
271+
set(ENABLE_ROARING_MICROBENCHMARKS OFF)
273272

274273
fetchcontent_declare(croaring
275274
${FC_DECLARE_COMMON_OPTIONS}

0 commit comments

Comments
 (0)