mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
14 lines
352 B
CMake
14 lines
352 B
CMake
if (HAVE_SSE42) # Not used. Pretty easy to port.
|
|
set (SOURCES_SSE42_ONLY src/metrohash128crc.cpp src/metrohash128crc.h)
|
|
endif ()
|
|
|
|
add_library(metrohash
|
|
src/metrohash.h
|
|
src/testvector.h
|
|
|
|
src/metrohash64.cpp
|
|
src/metrohash128.cpp
|
|
${SOURCES_SSE42_ONLY})
|
|
|
|
target_include_directories(metrohash PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
|