From 0671b4d65ec033ccf5500531044a99d89e7ad3f0 Mon Sep 17 00:00:00 2001 From: BrianMichell Date: Mon, 5 Aug 2024 20:48:57 +0000 Subject: [PATCH] Split cloud specific drives into their own variables --- CMakeLists.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0acebae..17881be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,11 +101,20 @@ set(mdio_INTERNAL_DEPS tensorstore::index_space_dim_expression tensorstore::index_space_index_transform tensorstore::util_status_testutil - tensorstore::kvstore_gcs tensorstore::driver_array PARENT_SCOPE ) +# Define internal deps for cloud specific drivers +set(mdio_INTERNAL_GCS_DRIVER_DEPS + tensorstore::kvstore_gcs + PARENT_SCOPE +) + +set(mdio_INTERNAL_S3_DRIVER_DEPS + tensorstore::kvstore_s3 + PARENT_SCOPE +) list(APPEND mdio_COMMON_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR})