summaryrefslogtreecommitdiffstats
path: root/src/exporter/CMakeLists.txt
blob: 0c0c03bf91db081dde81bf020a2c30e3535d5fa6 (plain)
1
2
3
4
5
6
7
8
9
10
set(exporter_srcs
  ceph_exporter.cc
  DaemonMetricCollector.cc
  http_server.cc
  util.cc
  )
add_executable(ceph-exporter ${exporter_srcs})
target_link_libraries(ceph-exporter
  global-static ceph-common)
install(TARGETS ceph-exporter DESTINATION bin)