mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
465d305479
* PerformanceTest: use getMultiple*FromConfig, fix debug helpers * Missing file * gcc7 fixes * clnag-format of Split ComplexKeyCacheDictionary * Requested changes * Fix boost 1.64 and gcc7+ compile errors * More fixes * Fix arm build * Fix nothrow * Better arm detection
55 lines
1.0 KiB
CMake
Vendored
55 lines
1.0 KiB
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 ()
|
|
|
|
if (USE_INTERNAL_LZ4_LIBRARY)
|
|
add_subdirectory (liblz4)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_ZSTD_LIBRARY)
|
|
add_subdirectory (libzstd)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_RE2_LIBRARY)
|
|
add_subdirectory (libre2)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_DOUBLE_CONVERSION_LIBRARY)
|
|
add_subdirectory (libdouble-conversion)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_ZOOKEEPER_LIBRARY)
|
|
add_subdirectory (libzookeeper)
|
|
endif ()
|
|
|
|
add_subdirectory (libcityhash)
|
|
add_subdirectory (libfarmhash)
|
|
add_subdirectory (libmetrohash)
|
|
add_subdirectory (libbtrie)
|
|
|
|
if (USE_INTERNAL_UNWIND_LIBRARY)
|
|
add_subdirectory (libunwind)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_ZLIB_LIBRARY)
|
|
add_subdirectory (libzlib-ng)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_CCTZ_LIBRARY)
|
|
add_subdirectory (libcctz)
|
|
endif ()
|
|
|
|
if (ENABLE_LIBTCMALLOC AND USE_INTERNAL_GPERFTOOLS_LIBRARY)
|
|
add_subdirectory (libtcmalloc)
|
|
endif ()
|
|
|
|
if (NOT ARM)
|
|
add_subdirectory (libcpuid)
|
|
endif ()
|