mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
13a305d648
fix
9 lines
212 B
CMake
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 ()
|
|
|