mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
d7bacb6611
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
13 lines
410 B
CMake
13 lines
410 B
CMake
set(LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/wordnet-blast")
|
|
|
|
set(SRCS
|
|
"${LIBRARY_DIR}/wnb/core/info_helper.cc"
|
|
"${LIBRARY_DIR}/wnb/core/load_wordnet.cc"
|
|
"${LIBRARY_DIR}/wnb/core/wordnet.cc"
|
|
)
|
|
|
|
add_library(_wnb ${SRCS})
|
|
target_link_libraries(_wnb PRIVATE boost::headers_only boost::graph)
|
|
target_include_directories(_wnb SYSTEM PUBLIC "${LIBRARY_DIR}")
|
|
add_library(ch_contrib::wnb ALIAS _wnb)
|