ClickHouse/contrib/libmetrohash/CMakeLists.txt
2016-02-08 00:58:58 +03:00

14 lines
334 B
CMake
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

include_directories (${CMAKE_CURRENT_BINARY_DIR})
IF (NOT AARCH64) # Не используется. Портировать не сложно.
SET(SOURCES_ONLY_ON_X86_64 src/metrohash128crc.cpp)
ENDIF()
add_library(metrohash
src/metrohash.h
src/testvector.h
src/metrohash64.cpp
src/metrohash128.cpp
${SOURCES_ONLY_ON_X86_64})