ClickHouse/cmake/find/filelog.cmake
2021-10-29 06:25:21 +00:00

9 lines
212 B
CMake

# StorageFileLog only support Linux platform
if (OS_LINUX)
set (USE_FILELOG 1)
message (STATUS "Using StorageFileLog = 1")
else()
message(STATUS "StorageFileLog is only supported on Linux")
endif ()