ClickHouse/cmake/find/capnp.cmake

35 lines
1.0 KiB
CMake
Raw Normal View History

option (ENABLE_CAPNP "Enable Cap'n Proto" ${ENABLE_LIBRARIES})
2019-09-11 02:53:56 +00:00
if (ENABLE_CAPNP)
2019-09-11 02:53:56 +00:00
option (USE_INTERNAL_CAPNP_LIBRARY "Set to FALSE to use system capnproto library instead of bundled" ${NOT_UNBUNDLED})
if(NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/capnproto/CMakeLists.txt")
if(USE_INTERNAL_CAPNP_LIBRARY)
message(WARNING "submodule contrib/capnproto is missing. to fix try run: \n git submodule update --init --recursive")
endif()
set(MISSING_INTERNAL_CAPNP_LIBRARY 1)
set(USE_INTERNAL_CAPNP_LIBRARY 0)
endif()
2019-09-11 02:53:56 +00:00
# FIXME: refactor to use `add_library(… IMPORTED)` if possible.
if (NOT USE_INTERNAL_CAPNP_LIBRARY)
find_library (KJ kj)
find_library (CAPNP capnp)
find_library (CAPNPC capnpc)
2019-09-11 02:53:56 +00:00
set (CAPNP_LIBRARIES ${CAPNPC} ${CAPNP} ${KJ})
elseif(NOT MISSING_INTERNAL_CAPNP_LIBRARY)
2019-09-11 02:53:56 +00:00
add_subdirectory(contrib/capnproto-cmake)
2019-09-11 02:53:56 +00:00
set (CAPNP_LIBRARIES capnpc)
endif ()
2019-09-11 02:53:56 +00:00
if (CAPNP_LIBRARIES)
set (USE_CAPNP 1)
endif ()
endif ()
message (STATUS "Using capnp=${USE_CAPNP}: ${CAPNP_LIBRARIES}")