You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set(TILEDB_INSTALL_LIBDIR ""CACHESTRING"If non-empty, install TileDB library to this directory instead of CMAKE_INSTALL_LIBDIR.")
42
42
43
+
if (DEFINED TILEDB_STATIC)
44
+
message(DEPRECATION "TILEDB_STATIC is deprecated and will be removed in version 2.28, to be released in Q3 2024. Use BUILD_SHARED_LIBS INSTEAD. Building both static and shared libraries is no longer available.")
45
+
if (TILEDB_STATIC)
46
+
set(BUILD_SHARED_LIBSOFF)
47
+
else()
48
+
set(BUILD_SHARED_LIBSON)
49
+
endif()
50
+
endif()
51
+
43
52
if (NOT TILEDB_VCPKG)
44
53
message(DEPRECATION "Disabling TILEDB_VCPKG is deprecated and will be removed in a future version.")
0 commit comments