2020-07-29 11:00:04 +00:00
|
|
|
# The stats is a header-only library of probability density functions,
|
2020-07-09 10:57:05 +00:00
|
|
|
# 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)
|
|
|
|
|
2020-07-14 15:09:08 +00:00
|
|
|
add_library(stats INTERFACE)
|
2020-07-09 10:57:05 +00:00
|
|
|
|
2020-07-15 12:15:43 +00:00
|
|
|
target_include_directories(stats SYSTEM INTERFACE ${STATS_INCLUDE_DIR})
|
|
|
|
target_include_directories(stats SYSTEM INTERFACE ${GCEM_INCLUDE_DIR})
|