pineapple-src/externals/vcpkg/ports/arrow/vcpkg-cmake-wrapper.cmake

10 lines
286 B
CMake
Raw Normal View History

2022-07-23 01:01:36 +00:00
_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()