ClickHouse/cmake/find/filelog.cmake

9 lines
212 B
CMake
Raw Normal View History

2021-10-13 09:10:41 +00:00
# StorageFileLog only support Linux platform
2021-10-22 02:36:24 +00:00
if (OS_LINUX)
2021-10-13 09:10:41 +00:00
set (USE_FILELOG 1)
message (STATUS "Using StorageFileLog = 1")
2021-10-22 02:36:24 +00:00
else()
message(STATUS "StorageFileLog is only supported on Linux")
endif ()
2021-10-13 09:10:41 +00:00