From b1cf615341db4567370d659741f5db0e15ab067a Mon Sep 17 00:00:00 2001 From: Arnaud Botella Date: Thu, 16 Oct 2025 12:55:18 +0200 Subject: [PATCH] fix(Abseil): handle static dependency on Windows --- src/geode/basic/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geode/basic/CMakeLists.txt b/src/geode/basic/CMakeLists.txt index df26dd096..e63ada5ee 100644 --- a/src/geode/basic/CMakeLists.txt +++ b/src/geode/basic/CMakeLists.txt @@ -118,6 +118,6 @@ add_geode_library( spdlog::spdlog_header_only MINIZIP::minizip-ng ) -if(WIN32) +if(WIN32 AND BUILD_SHARED_LIBS) target_link_libraries(basic PUBLIC absl::abseil_dll) endif() \ No newline at end of file