Skip to content

Commit 51723fd

Browse files
committed
Fix incorrect flag set
1 parent f3ec205 commit 51723fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ find_package(pybind11 CONFIG REQUIRED)
1616
set(TileDB_DIR $ENV{TILEDB_PATH})
1717
find_package(TileDB)
1818
if (NOT TileDB_FOUND)
19+
message(STATUS "TileDB library not found, downloading...")
1920
include(cmake/DownloadTileDB.cmake)
2021
fetch_prebuilt_tiledb(
2122
VERSION 2.23.0
2223
RELLIST_HASH SHA256=2221b0ee2af2675d69f9cb31bc22062d3f379eeecc83b5fc713d00fa03d6e56f
2324
)
2425
find_package(TileDB REQUIRED)
25-
set(TILEDB_DOWNLOADED)
26+
set(TILEDB_DOWNLOADED "True")
2627
endif()
2728

2829
add_subdirectory(tiledb)

0 commit comments

Comments
 (0)