aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/histogram/adaptive/CMakeLists.txt
blob: 9bfe6245a46abe1e69ad6c65233a913893d20c63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
add_library(cpp-histogram-adaptive)
target_link_libraries(cpp-histogram-adaptive PUBLIC
  contrib-libs-cxxsupp
  yutil
  contrib-libs-protobuf
  histogram-adaptive-protos
)
target_sources(cpp-histogram-adaptive PRIVATE
  ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
  ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
  ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
  ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
)