mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
f87ae6808f
* Correct fix of building with external poco with disabled sending progress
Revert "Removed wrong code [#CLICKHOUSE-2]."
This reverts commit 33f9917f53
.
* fix
* fix
* cmake: USE_INTERNAL_ZLIB_LIBRARY
32 lines
706 B
CMake
Vendored
32 lines
706 B
CMake
Vendored
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-old-style-cast")
|
|
|
|
if (USE_INTERNAL_BOOST_LIBRARY)
|
|
add_subdirectory (libboost)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_POCO_LIBRARY)
|
|
add_subdirectory (libpoco)
|
|
endif ()
|
|
|
|
add_subdirectory (liblz4)
|
|
add_subdirectory (libzstd)
|
|
add_subdirectory (libre2)
|
|
add_subdirectory (libdouble-conversion)
|
|
add_subdirectory (libzookeeper)
|
|
add_subdirectory (libcityhash)
|
|
add_subdirectory (libfarmhash)
|
|
add_subdirectory (libmetrohash)
|
|
if (USE_INTERNAL_ZLIB_LIBRARY)
|
|
add_subdirectory (libzlib-ng)
|
|
endif ()
|
|
|
|
add_subdirectory (libcctz)
|
|
|
|
if (ENABLE_LIBTCMALLOC AND USE_INTERNAL_GPERFTOOLS_LIBRARY)
|
|
add_subdirectory (libtcmalloc)
|
|
endif ()
|
|
|
|
if (NOT AARCH64)
|
|
add_subdirectory (libcpuid)
|
|
endif ()
|