mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
d6833a0d55
* Fix .h compile * Cmake: remove global include_directories * boost include hide * fix cctz * add \n
14 lines
327 B
CMake
14 lines
327 B
CMake
if (HAVE_SSE42) # Not used. Pretty easy to port.
|
|
set (SOURCES_SSE42_ONLY src/metrohash128crc.cpp)
|
|
endif ()
|
|
|
|
add_library(metrohash
|
|
src/metrohash.h
|
|
src/testvector.h
|
|
|
|
src/metrohash64.cpp
|
|
src/metrohash128.cpp
|
|
${SOURCES_SSE42_ONLY})
|
|
|
|
target_include_directories(metrohash PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|