ClickHouse/contrib/replxx-cmake/CMakeLists.txt

31 lines
842 B
CMake
Raw Normal View History

2020-01-23 08:18:19 +00:00
option (ENABLE_REPLXX "Enable replxx support" ${ENABLE_LIBRARIES})
if (NOT ENABLE_REPLXX)
message (STATUS "Not using replxx")
return()
endif()
2022-01-18 06:48:24 +00:00
set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/replxx")
2020-01-23 08:18:19 +00:00
2022-01-18 06:48:24 +00:00
set(SRCS
"${LIBRARY_DIR}/src/conversion.cxx"
"${LIBRARY_DIR}/src/ConvertUTF.cpp"
"${LIBRARY_DIR}/src/escape.cxx"
"${LIBRARY_DIR}/src/history.cxx"
"${LIBRARY_DIR}/src/terminal.cxx"
"${LIBRARY_DIR}/src/prompt.cxx"
"${LIBRARY_DIR}/src/replxx_impl.cxx"
"${LIBRARY_DIR}/src/replxx.cxx"
"${LIBRARY_DIR}/src/util.cxx"
"${LIBRARY_DIR}/src/wcwidth.cpp"
)
2020-01-23 08:18:19 +00:00
2022-01-18 06:48:24 +00:00
add_library (replxx ${SRCS})
target_include_directories(replxx SYSTEM PUBLIC "${LIBRARY_DIR}/include")
if (COMPILER_CLANG)
target_compile_options(replxx PRIVATE -Wno-documentation)
2020-01-23 08:18:19 +00:00
endif ()
2022-01-18 06:48:24 +00:00
add_library(ch_contrib::replxx ALIAS replxx)