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)