From b316411f65cfb2e7c4766183ce9258771b281f03 Mon Sep 17 00:00:00 2001 From: "John R. Patek" Date: Mon, 22 Dec 2025 10:17:09 -0600 Subject: [PATCH] Added /bigobj flag for MSVC --- src/storage/index/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/storage/index/CMakeLists.txt b/src/storage/index/CMakeLists.txt index f73c484e0c2..30b4aaec3f0 100644 --- a/src/storage/index/CMakeLists.txt +++ b/src/storage/index/CMakeLists.txt @@ -4,6 +4,10 @@ add_library(kuzu_storage_index in_mem_hash_index.cpp index.cpp) +if(MSVC) + target_compile_options(kuzu_storage_index PUBLIC "/bigobj") +endif() + set(ALL_OBJECT_FILES ${ALL_OBJECT_FILES} $ PARENT_SCOPE)