]> granicus.if.org Git - icinga2/blob - lib/checker/CMakeLists.txt
Merge pull request #6229 from Icinga/fix/systemd-shell
[icinga2] / lib / checker / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation
16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 mkclass_target(checkercomponent.ti checkercomponent-ti.cpp checkercomponent-ti.hpp)
19
20 set(checker_SOURCES
21   checkercomponent.cpp checkercomponent.hpp checkercomponent-ti.hpp
22 )
23
24 if(ICINGA2_UNITY_BUILD)
25   mkunity_target(checker checker checker_SOURCES)
26 endif()
27
28 add_library(checker OBJECT ${checker_SOURCES})
29
30 add_dependencies(checker base config icinga remote)
31
32 set_target_properties (
33   checker PROPERTIES
34   FOLDER Components
35 )
36
37 install_if_not_exists(
38   ${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/checker.conf
39   ${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
40 )
41
42 if(NOT WIN32)
43   install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_SYSCONFDIR}/icinga2/features-enabled\")")
44   install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink ../features-available/checker.conf \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_SYSCONFDIR}/icinga2/features-enabled/checker.conf\")")
45 else()
46   install_if_not_exists(${PROJECT_SOURCE_DIR}/etc/icinga2/features-enabled/checker.conf ${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-enabled)
47 endif()
48
49 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)