mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
20 lines
543 B
CMake
20 lines
543 B
CMake
option(ENABLE_BCRYPT "Enable bcrypt" ${ENABLE_LIBRARIES})
|
|
|
|
if (NOT ENABLE_BCRYPT)
|
|
message(STATUS "Not using bcrypt")
|
|
return()
|
|
endif()
|
|
|
|
set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/libbcrypt")
|
|
|
|
set(SRCS
|
|
"${LIBRARY_DIR}/bcrypt.c"
|
|
"${LIBRARY_DIR}/crypt_blowfish/crypt_blowfish.c"
|
|
"${LIBRARY_DIR}/crypt_blowfish/crypt_gensalt.c"
|
|
"${LIBRARY_DIR}/crypt_blowfish/wrapper.c"
|
|
)
|
|
|
|
add_library(_bcrypt ${SRCS})
|
|
target_include_directories(_bcrypt SYSTEM PUBLIC "${LIBRARY_DIR}")
|
|
add_library(ch_contrib::bcrypt ALIAS _bcrypt)
|