pineapple/externals/vcpkg/ports/arrow/vcpkg-cmake-wrapper.cmake
2022-07-23 03:01:36 +02:00

9 lines
286 B
CMake
Executable file

_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()