mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
47ad338cb2
* Get rid of lib_name.cmake * Refactor Boost and HyperScan libraries * Refactor lz4 * Fix build with xxHash
11 lines
247 B
CMake
11 lines
247 B
CMake
set (SRCS
|
|
src/metrohash64.cpp
|
|
src/metrohash128.cpp
|
|
)
|
|
if (HAVE_SSE42) # Not used. Pretty easy to port.
|
|
list (APPEND SRCS src/metrohash128crc.cpp)
|
|
endif ()
|
|
|
|
add_library(metrohash ${SRCS})
|
|
target_include_directories(metrohash PUBLIC src)
|