mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
22 lines
672 B
CMake
22 lines
672 B
CMake
option(USE_SNAPPY "Enable snappy library" ${ENABLE_LIBRARIES})
|
|
|
|
if(NOT USE_SNAPPY)
|
|
if (USE_INTERNAL_SNAPPY_LIBRARY)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't use internal snappy library with USE_SNAPPY=OFF")
|
|
endif()
|
|
return()
|
|
endif()
|
|
|
|
option (USE_INTERNAL_SNAPPY_LIBRARY "Set to FALSE to use system snappy library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if(NOT USE_INTERNAL_SNAPPY_LIBRARY)
|
|
find_library(SNAPPY_LIBRARY snappy)
|
|
if (NOT SNAPPY_LIBRARY)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find system snappy library")
|
|
endif()
|
|
else ()
|
|
set(SNAPPY_LIBRARY snappy)
|
|
endif()
|
|
|
|
message (STATUS "Using snappy: ${SNAPPY_LIBRARY}")
|