ClickHouse/cmake/find/termcap.cmake

9 lines
242 B
CMake
Raw Normal View History

2019-11-12 14:37:33 +00:00
find_library (TERMCAP_LIBRARY tinfo)
if (NOT TERMCAP_LIBRARY)
2019-11-12 14:37:33 +00:00
find_library (TERMCAP_LIBRARY ncurses)
endif()
if (NOT TERMCAP_LIBRARY)
find_library (TERMCAP_LIBRARY termcap)
endif()
message (STATUS "Using termcap: ${TERMCAP_LIBRARY}")