ClickHouse/src/Formats/CMakeLists.txt

22 lines
485 B
CMake
Raw Normal View History

2022-01-16 19:34:00 +00:00
if (TARGET ch_contrib::avrocpp)
set(USE_AVRO 1)
endif()
2022-01-16 18:02:32 +00:00
if (TARGET ch_contrib::parquet)
set(USE_PARQUET 1)
set(USE_ARROW 1)
2022-01-16 19:37:27 +00:00
set(USE_ORC 1)
2022-01-16 18:02:32 +00:00
endif()
2022-01-16 20:00:25 +00:00
if (TARGET ch_contrib::snappy)
set(USE_SNAPPY 1)
endif()
2022-01-17 07:46:31 +00:00
if (TARGET ch_contrib::protobuf)
set(USE_PROTOBUF 1)
endif()
2022-01-17 20:21:37 +00:00
if (TARGET ch_contrib::msgpack)
set(USE_MSGPACK 1)
endif()
2022-01-17 20:57:21 +00:00
if (TARGET ch_contrib::capnp)
set(USE_CAPNP 1)
endif()
2019-12-15 06:34:43 +00:00
configure_file(config_formats.h.in ${ConfigIncludePath}/config_formats.h)