mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-02 02:48:25 -05:00
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()
|