mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
c3506bf16d
- Uses a small assembly file to include binary resources, rather than objcopy - Updates `base/common/getResource.cpp` for this new method of inclusion - Removes linux-only guards in CMake files, as this solution is cross-platform. The resulting binary resources are available in the ClickHouse server binary on Linux, macOS, and illumos platforms. FreeBSD has not been tested, but will likely work as well.
39 lines
1021 B
CMake
39 lines
1021 B
CMake
include(${ClickHouse_SOURCE_DIR}/cmake/embed_binary.cmake)
|
|
|
|
set(CLICKHOUSE_SERVER_SOURCES
|
|
MetricsTransmitter.cpp
|
|
Server.cpp
|
|
)
|
|
|
|
set (LINK_RESOURCE_LIB INTERFACE "-Wl,${WHOLE_ARCHIVE} $<TARGET_FILE:clickhouse_server_configs> -Wl,${NO_WHOLE_ARCHIVE}")
|
|
|
|
set (CLICKHOUSE_SERVER_LINK
|
|
PRIVATE
|
|
clickhouse_aggregate_functions
|
|
clickhouse_common_config
|
|
clickhouse_common_io
|
|
clickhouse_common_zookeeper
|
|
clickhouse_dictionaries
|
|
clickhouse_functions
|
|
clickhouse_parsers
|
|
clickhouse_storages_system
|
|
clickhouse_table_functions
|
|
string_utils
|
|
jemalloc
|
|
|
|
${LINK_RESOURCE_LIB}
|
|
|
|
PUBLIC
|
|
daemon
|
|
)
|
|
|
|
clickhouse_program_add(server)
|
|
|
|
install(FILES config.xml users.xml DESTINATION "${CLICKHOUSE_ETC_DIR}/clickhouse-server" COMPONENT clickhouse)
|
|
|
|
clickhouse_embed_binaries(
|
|
TARGET clickhouse_server_configs
|
|
RESOURCES config.xml users.xml embedded.xml play.html
|
|
)
|
|
add_dependencies(clickhouse-server-lib clickhouse_server_configs)
|