2019-02-25 15:09:36 +01:00
|
|
|
# Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2018-01-18 13:50:38 +01:00
|
|
|
mkclass_target(livestatuslistener.ti livestatuslistener-ti.cpp livestatuslistener-ti.hpp)
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2014-08-30 18:08:28 +02:00
|
|
|
set(livestatus_SOURCES
|
2017-12-24 08:18:33 +01:00
|
|
|
i2-livestatus.hpp
|
|
|
|
aggregator.cpp aggregator.hpp
|
|
|
|
andfilter.cpp andfilter.hpp
|
|
|
|
attributefilter.cpp attributefilter.hpp
|
|
|
|
avgaggregator.cpp avgaggregator.hpp
|
|
|
|
column.cpp column.hpp
|
|
|
|
combinerfilter.cpp combinerfilter.hpp
|
|
|
|
commandstable.cpp commandstable.hpp
|
|
|
|
commentstable.cpp commentstable.hpp
|
|
|
|
contactgroupstable.cpp contactgroupstable.hpp
|
|
|
|
contactstable.cpp contactstable.hpp
|
|
|
|
countaggregator.cpp countaggregator.hpp
|
|
|
|
downtimestable.cpp downtimestable.hpp
|
|
|
|
endpointstable.cpp endpointstable.hpp
|
2018-01-04 06:11:04 +01:00
|
|
|
filter.hpp
|
|
|
|
historytable.hpp
|
2017-12-24 08:18:33 +01:00
|
|
|
hostgroupstable.cpp hostgroupstable.hpp
|
|
|
|
hoststable.cpp hoststable.hpp
|
|
|
|
invavgaggregator.cpp invavgaggregator.hpp
|
|
|
|
invsumaggregator.cpp invsumaggregator.hpp
|
2018-01-18 13:50:38 +01:00
|
|
|
livestatuslistener.cpp livestatuslistener.hpp livestatuslistener-ti.hpp
|
2017-12-24 08:18:33 +01:00
|
|
|
livestatuslogutility.cpp livestatuslogutility.hpp
|
|
|
|
livestatusquery.cpp livestatusquery.hpp
|
|
|
|
logtable.cpp logtable.hpp
|
|
|
|
maxaggregator.cpp maxaggregator.hpp
|
|
|
|
minaggregator.cpp minaggregator.hpp
|
|
|
|
negatefilter.cpp negatefilter.hpp
|
|
|
|
orfilter.cpp orfilter.hpp
|
|
|
|
servicegroupstable.cpp servicegroupstable.hpp
|
|
|
|
servicestable.cpp servicestable.hpp
|
|
|
|
statehisttable.cpp statehisttable.hpp
|
|
|
|
statustable.cpp statustable.hpp
|
|
|
|
stdaggregator.cpp stdaggregator.hpp
|
|
|
|
sumaggregator.cpp sumaggregator.hpp
|
|
|
|
table.cpp table.hpp
|
|
|
|
timeperiodstable.cpp timeperiodstable.hpp
|
|
|
|
zonestable.cpp zonestable.hpp
|
2014-08-30 18:08:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if(ICINGA2_UNITY_BUILD)
|
2018-01-19 09:18:52 +01:00
|
|
|
mkunity_target(livestatus livestatus livestatus_SOURCES)
|
2014-08-30 18:08:28 +02:00
|
|
|
endif()
|
|
|
|
|
2018-01-17 04:28:21 +01:00
|
|
|
add_library(livestatus OBJECT ${livestatus_SOURCES})
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2018-01-17 04:28:21 +01:00
|
|
|
add_dependencies(livestatus base config icinga remote)
|
2013-11-03 13:45:26 +01:00
|
|
|
|
|
|
|
set_target_properties (
|
|
|
|
livestatus PROPERTIES
|
|
|
|
FOLDER Components
|
|
|
|
)
|
|
|
|
|
2014-12-19 09:45:35 +01:00
|
|
|
install_if_not_exists(
|
|
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/livestatus.conf
|
2018-07-31 11:59:09 +02:00
|
|
|
${ICINGA2_CONFIGDIR}/features-available
|
2014-12-19 09:45:35 +01:00
|
|
|
)
|
|
|
|
|
2018-07-31 11:59:09 +02:00
|
|
|
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_INITRUNDIR}/cmd\")")
|
2014-12-19 16:42:20 +01:00
|
|
|
|
2015-02-02 09:58:38 +01:00
|
|
|
set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)
|