Skip to content

Commit

Permalink
Upgrade Embedded to 2.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awenocur committed May 31, 2024
1 parent 09afd34 commit eee6d0b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions libtiledbvcf/cmake/Modules/FindTileDB_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ else()
# Try to download prebuilt artifacts unless the user specifies to build from source
if(DOWNLOAD_TILEDB_PREBUILT)
if (WIN32) # Windows
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.23.0/tiledb-windows-x86_64-2.23.0-152093b.zip")
SET(DOWNLOAD_SHA1 "ea83e8482b84244407d73f72dfeec0efb0d1ef8c")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.24.0-rc0/tiledb-windows-x86_64-2.24.0-rc0-52713e1.zip")
SET(DOWNLOAD_SHA1 "a758916e8b8f965ae98a37b2af990b9d22b31536")
elseif(APPLE) # OSX

if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.23.0/tiledb-macos-x86_64-2.23.0-152093b.tar.gz")
SET(DOWNLOAD_SHA1 "b0aeef67e1e7d6a8037c4a6e088c910d692b0615")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.24.0-rc0/tiledb-macos-x86_64-2.24.0-rc0-52713e1.tar.gz")
SET(DOWNLOAD_SHA1 "aea4539696009fb2668c2333f38e99476b3ae2a1")
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.23.0/tiledb-macos-arm64-2.23.0-152093b.tar.gz")
SET(DOWNLOAD_SHA1 "6414e23bd89eb023283b9bea37b2b65deff4b769")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.24.0-rc0/tiledb-macos-arm64-2.24.0-rc0-52713e1.tar.gz")
SET(DOWNLOAD_SHA1 "6fa7cd5ea7c4ad82756ae5fd3b7e926a5989e3bd")
endif()
else() # Linux
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.23.0/tiledb-linux-x86_64-2.23.0-152093b.tar.gz")
SET(DOWNLOAD_SHA1 "afcedf7eac59d8ccb357fce8bcf0cfb24ff8c329")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.24.0-rc0/tiledb-linux-x86_64-2.24.0-rc0-52713e1.tar.gz")
SET(DOWNLOAD_SHA1 "2fae95e14a216e2380178a4c1c3ec03653027b6e")
endif()

ExternalProject_Add(ep_tiledb
Expand All @@ -87,8 +87,8 @@ else()
else() # Build from source
ExternalProject_Add(ep_tiledb
PREFIX "externals"
URL "https://github.com/TileDB-Inc/TileDB/archive/2.23.0.zip"
URL_HASH SHA1=2acca37618f0a6192ca648930138231476422b96
URL "https://github.com/TileDB-Inc/TileDB/archive/2.24.0-rc0.zip"
URL_HASH SHA1=a547116cf4a1cabecd21c9d2e4ceaff3bfa2bebd
DOWNLOAD_NAME "tiledb.zip"
CMAKE_ARGS
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}
Expand Down

0 comments on commit eee6d0b

Please sign in to comment.