mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
10 lines
276 B
CMake
10 lines
276 B
CMake
if (OS_FREEBSD)
|
|
find_library (EXECINFO_LIBRARY execinfo)
|
|
find_library (ELF_LIBRARY elf)
|
|
message (STATUS "Using execinfo: ${EXECINFO_LIBRARY}")
|
|
message (STATUS "Using elf: ${ELF_LIBRARY}")
|
|
else ()
|
|
set (EXECINFO_LIBRARY "")
|
|
set (ELF_LIBRARY "")
|
|
endif ()
|