mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
7 lines
194 B
CMake
7 lines
194 B
CMake
|
set (LTDL_HINTS "/usr/local/opt/libtool/lib")
|
||
|
if (USE_STATIC_LIBRARIES)
|
||
|
find_library (LTDL_LIB libltdl.a HINTS ${LTDL_HINTS})
|
||
|
else ()
|
||
|
find_library (LTDL_LIB ltdl HINTS ${LTDL_HINTS})
|
||
|
endif ()
|