mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
fe56697893
squashed: find/msgpack.cmake - merge collision fix, trivial Signed-off-by: Konstantin Podshumok <kpp.live+signed@gmail.com>
12 lines
365 B
CMake
12 lines
365 B
CMake
find_library (TERMCAP_LIBRARY tinfo)
|
|
if (NOT TERMCAP_LIBRARY)
|
|
find_library (TERMCAP_LIBRARY ncurses)
|
|
endif()
|
|
if (NOT TERMCAP_LIBRARY)
|
|
find_library (TERMCAP_LIBRARY termcap)
|
|
endif()
|
|
if (NOT TERMCAP_LIBRARY)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find tinfo, ncurses or termcap library")
|
|
endif()
|
|
message (STATUS "Using termcap: ${TERMCAP_LIBRARY}")
|