mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 14:19:07 +08:00
6d27dc93f7
* [arrow] Fix CMake link error * update version * [arrow] update vcpkg-cmake-wrapper.cmake * update version Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
10 lines
286 B
CMake
10 lines
286 B
CMake
_find_package(${ARGS})
|
|
|
|
if(TARGET arrow_static)
|
|
list(APPEND ARROW_LIBRARIES arrow_static)
|
|
list(APPEND PARQUET_LIBRARIES parquet_static)
|
|
elseif (TARGET arrow_shared)
|
|
list(APPEND ARROW_LIBRARIES arrow_shared)
|
|
list(APPEND PARQUET_LIBRARIES parquet_shared)
|
|
endif()
|