ClickHouse/contrib/wyhash-cmake/CMakeLists.txt

10 lines
280 B
CMake
Raw Normal View History

2022-04-20 23:26:37 +00:00
set (LIBRARY_DIR ${ClickHouse_SOURCE_DIR}/contrib/wyhash)
add_library (wyhash "${LIBRARY_DIR}/wyhash.h")
2022-04-20 23:29:53 +00:00
target_include_directories(wyhash SYSTEM PUBLIC ${LIBRARY_DIR})
2022-04-20 23:26:37 +00:00
add_library (ch_contrib::wyhash ALIAS wyhash)
2022-05-09 05:15:18 +00:00
set_target_properties(wyhash PROPERTIES LINKER_LANGUAGE CXX)