Skip to content

Commit

Permalink
Fix build errors on macos and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdelv committed Jan 25, 2024
1 parent 3951079 commit fba36b3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions plugins/parquet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ if(PARQUETEMBED OR USE_PARQUET)
${HPCC_SOURCE_DIR}/roxie/roxiemem
)

add_definitions(-D_USRDLL -DPARQUETEMBED_PLUGIN_EXPORTS)

HPCC_ADD_LIBRARY(parquetembed SHARED ${SRCS})

install(
Expand Down Expand Up @@ -104,9 +106,9 @@ if(PARQUETEMBED OR USE_PARQUET)
parquetembed
eclrtl
jlib
Arrow::arrow_shared
Parquet::parquet_shared
ArrowDataset::arrow_dataset_shared
"$<IF:$<BOOL:${ARROW_BUILD_STATIC}>,Arrow::arrow_static,Arrow::arrow_shared>"
"$<IF:$<BOOL:${ARROW_BUILD_STATIC}>,Parquet::parquet_static,Parquet::parquet_shared>"
"$<IF:$<BOOL:${ARROW_BUILD_STATIC}>,ArrowDataset::arrow_dataset_static,ArrowDataset::arrow_dataset_shared>"
)
endif()
endif()
Expand Down

0 comments on commit fba36b3

Please sign in to comment.