mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
d1c258cf20
* impl * try fix * add docs * add test * rm unused file * excellent
14 lines
542 B
CMake
14 lines
542 B
CMake
set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/xxHash")
|
|
set (SRCS
|
|
"${LIBRARY_DIR}/xxhash.c"
|
|
)
|
|
|
|
add_library(xxHash ${SRCS})
|
|
target_include_directories(xxHash SYSTEM BEFORE INTERFACE "${LIBRARY_DIR}")
|
|
|
|
# XXH_INLINE_ALL - Make all functions inline, with implementations being directly included within xxhash.h. Inlining functions is beneficial for speed on small keys.
|
|
# https://github.com/Cyan4973/xxHash/tree/v0.8.1#build-modifiers
|
|
target_compile_definitions(xxHash PUBLIC XXH_INLINE_ALL)
|
|
|
|
add_library(ch_contrib::xxHash ALIAS xxHash)
|