mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +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 ()
|