mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
10 lines
469 B
CMake
10 lines
469 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 INTERFACE)
|
|
|
|
target_include_directories(stats SYSTEM INTERFACE ${STATS_INCLUDE_DIR})
|
|
target_include_directories(stats SYSTEM INTERFACE ${GCEM_INCLUDE_DIR})
|