mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
22 lines
485 B
CMake
22 lines
485 B
CMake
if (TARGET ch_contrib::avrocpp)
|
|
set(USE_AVRO 1)
|
|
endif()
|
|
if (TARGET ch_contrib::parquet)
|
|
set(USE_PARQUET 1)
|
|
set(USE_ARROW 1)
|
|
set(USE_ORC 1)
|
|
endif()
|
|
if (TARGET ch_contrib::snappy)
|
|
set(USE_SNAPPY 1)
|
|
endif()
|
|
if (TARGET ch_contrib::protobuf)
|
|
set(USE_PROTOBUF 1)
|
|
endif()
|
|
if (TARGET ch_contrib::msgpack)
|
|
set(USE_MSGPACK 1)
|
|
endif()
|
|
if (TARGET ch_contrib::capnp)
|
|
set(USE_CAPNP 1)
|
|
endif()
|
|
configure_file(config_formats.h.in ${ConfigIncludePath}/config_formats.h)
|