ClickHouse/cmake/find_termcap.cmake

6 lines
166 B
CMake
Raw Normal View History

find_library (TERMCAP_LIBRARY termcap)
if (NOT TERMCAP_LIBRARY)
find_library (TERMCAP_LIBRARY tinfo)
endif()
message (STATUS "Using termcap: ${TERMCAP_LIBRARY}")