We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ec205 commit 51723fdCopy full SHA for 51723fd
CMakeLists.txt
@@ -16,13 +16,14 @@ find_package(pybind11 CONFIG REQUIRED)
16
set(TileDB_DIR $ENV{TILEDB_PATH})
17
find_package(TileDB)
18
if (NOT TileDB_FOUND)
19
+ message(STATUS "TileDB library not found, downloading...")
20
include(cmake/DownloadTileDB.cmake)
21
fetch_prebuilt_tiledb(
22
VERSION 2.23.0
23
RELLIST_HASH SHA256=2221b0ee2af2675d69f9cb31bc22062d3f379eeecc83b5fc713d00fa03d6e56f
24
)
25
find_package(TileDB REQUIRED)
- set(TILEDB_DOWNLOADED)
26
+ set(TILEDB_DOWNLOADED "True")
27
endif()
28
29
add_subdirectory(tiledb)
0 commit comments