mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
13 lines
485 B
CMake
13 lines
485 B
CMake
# The stats is a header-only library of probability density functions,
|
|
# cumulative distribution functions, quantile functions, and random sampling methods.
|
|
|
|
set(STATS_INCLUDE_DIR ${ClickHouse_SOURCE_DIR}/contrib/stats/include)
|
|
set(GCEM_INCLUDE_DIR ${ClickHouse_SOURCE_DIR}/contrib/gcem/include)
|
|
|
|
add_library(stats)
|
|
|
|
target_include_directories(stats SYSTEM PUBLIC ${STATS_INCLUDE_DIR})
|
|
target_include_directories(stats SYSTEM PUBLIC ${GCEM_INCLUDE_DIR})
|
|
|
|
add_dependencies(stats gcem)
|