mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
d739c6a38f
This reverts commitda8d8f35dd
, reversing changes made toc3d0a87b8b
.
9 lines
242 B
CMake
9 lines
242 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()
|
|
message (STATUS "Using termcap: ${TERMCAP_LIBRARY}")
|