mirror of https://github.com/Icinga/icinga2.git
81 lines
2.9 KiB
CMake
81 lines
2.9 KiB
CMake
# Icinga 2
|
|
# Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
mkclass_target(gelfwriter.ti gelfwriter-ti.cpp gelfwriter-ti.hpp)
|
|
mkclass_target(graphitewriter.ti graphitewriter-ti.cpp graphitewriter-ti.hpp)
|
|
mkclass_target(influxdbwriter.ti influxdbwriter-ti.cpp influxdbwriter-ti.hpp)
|
|
mkclass_target(elasticsearchwriter.ti elasticsearchwriter-ti.cpp elasticsearchwriter-ti.hpp)
|
|
mkclass_target(opentsdbwriter.ti opentsdbwriter-ti.cpp opentsdbwriter-ti.hpp)
|
|
mkclass_target(perfdatawriter.ti perfdatawriter-ti.cpp perfdatawriter-ti.hpp)
|
|
|
|
set(perfdata_SOURCES
|
|
elasticsearchwriter.cpp elasticsearchwriter.hpp elasticsearchwriter-ti.hpp
|
|
gelfwriter.cpp gelfwriter.hpp gelfwriter-ti.hpp
|
|
graphitewriter.cpp graphitewriter.hpp graphitewriter-ti.hpp
|
|
influxdbwriter.cpp influxdbwriter.hpp influxdbwriter-ti.hpp
|
|
opentsdbwriter.cpp opentsdbwriter.hpp opentsdbwriter-ti.hpp
|
|
perfdatawriter.cpp perfdatawriter.hpp perfdatawriter-ti.hpp
|
|
)
|
|
|
|
if(ICINGA2_UNITY_BUILD)
|
|
mkunity_target(perfdata perfdata perfdata_SOURCES)
|
|
endif()
|
|
|
|
add_library(perfdata OBJECT ${perfdata_SOURCES})
|
|
|
|
add_dependencies(perfdata base config icinga)
|
|
|
|
set_target_properties (
|
|
perfdata PROPERTIES
|
|
FOLDER Components
|
|
)
|
|
|
|
install_if_not_exists(
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/gelf.conf
|
|
${ICINGA2_CONFIGDIR}/features-available
|
|
)
|
|
|
|
install_if_not_exists(
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/graphite.conf
|
|
${ICINGA2_CONFIGDIR}/features-available
|
|
)
|
|
|
|
install_if_not_exists(
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/influxdb.conf
|
|
${ICINGA2_CONFIGDIR}/features-available
|
|
)
|
|
|
|
install_if_not_exists(
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/elasticsearch.conf
|
|
${ICINGA2_CONFIGDIR}/features-available
|
|
)
|
|
|
|
install_if_not_exists(
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/opentsdb.conf
|
|
${ICINGA2_CONFIGDIR}/features-available
|
|
)
|
|
|
|
install_if_not_exists(
|
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/perfdata.conf
|
|
${ICINGA2_CONFIGDIR}/features-available
|
|
)
|
|
|
|
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_SPOOLDIR}/perfdata\")")
|
|
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_SPOOLDIR}/tmp\")")
|
|
|
|
set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)
|