Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions clickhouse/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ SET ( clickhouse-cpp-lib-src
block.cpp
client.cpp
query.cpp
async_client.cpp

# Headers
base/buffer.h
base/byte_ring.h
base/compressed.h
base/endpoints_iterator.h
base/input.h
Expand Down Expand Up @@ -76,6 +78,7 @@ SET ( clickhouse-cpp-lib-src

block.h
client.h
async_client.h
error_codes.h
exceptions.h
protocol.h
Expand Down Expand Up @@ -186,6 +189,7 @@ ENDIF()
# general
INSTALL(FILES block.h DESTINATION include/clickhouse/)
INSTALL(FILES client.h DESTINATION include/clickhouse/)
INSTALL(FILES async_client.h DESTINATION include/clickhouse/)
INSTALL(FILES error_codes.h DESTINATION include/clickhouse/)
INSTALL(FILES exceptions.h DESTINATION include/clickhouse/)
INSTALL(FILES server_exception.h DESTINATION include/clickhouse/)
Expand All @@ -195,6 +199,7 @@ INSTALL(FILES version.h DESTINATION include/clickhouse/)

# base
INSTALL(FILES base/buffer.h DESTINATION include/clickhouse/base/)
INSTALL(FILES base/byte_ring.h DESTINATION include/clickhouse/base/)
INSTALL(FILES base/compressed.h DESTINATION include/clickhouse/base/)
INSTALL(FILES base/input.h DESTINATION include/clickhouse/base/)
INSTALL(FILES base/open_telemetry.h DESTINATION include/clickhouse/base/)
Expand Down
Loading