Skip to content

Commit 615a935

Browse files
committed
fix windows compile same .lib name
1 parent 9a9ac89 commit 615a935

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cmake_modules/IcebergThirdpartyToolchain.cmake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,10 @@ function(resolve_arrow_dependency)
130130
endif()
131131

132132
set(ARROW_VENDORED TRUE)
133-
set_target_properties(arrow_static PROPERTIES OUTPUT_NAME "iceberg_vendored_arrow")
133+
set_target_properties(arrow_static PROPERTIES OUTPUT_NAME
134+
"iceberg_vendored_arrow_static")
134135
set_target_properties(parquet_static PROPERTIES OUTPUT_NAME
135-
"iceberg_vendored_parquet")
136+
"iceberg_vendored_parquet_static")
136137
install(TARGETS arrow_static parquet_static
137138
EXPORT iceberg_targets
138139
RUNTIME DESTINATION "${ICEBERG_INSTALL_BINDIR}"

0 commit comments

Comments
 (0)