mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-30 18:53:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+
 | |
| 
 | |
| mkclass_target(checkercomponent.ti checkercomponent-ti.cpp checkercomponent-ti.hpp)
 | |
| 
 | |
| set(checker_SOURCES
 | |
|   checkercomponent.cpp checkercomponent.hpp checkercomponent-ti.hpp
 | |
| )
 | |
| 
 | |
| if(ICINGA2_UNITY_BUILD)
 | |
|   mkunity_target(checker checker checker_SOURCES)
 | |
| endif()
 | |
| 
 | |
| add_library(checker OBJECT ${checker_SOURCES})
 | |
| 
 | |
| add_dependencies(checker base config icinga remote)
 | |
| 
 | |
| set_target_properties (
 | |
|   checker PROPERTIES
 | |
|   FOLDER Components
 | |
| )
 | |
| 
 | |
| install_if_not_exists(
 | |
|   ${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/checker.conf
 | |
|   ${ICINGA2_CONFIGDIR}/features-available
 | |
| )
 | |
| 
 | |
| if(NOT WIN32)
 | |
|   install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_CONFIGDIR}/features-enabled\")")
 | |
|   install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink ../features-available/checker.conf \"\$ENV{DESTDIR}${ICINGA2_FULL_CONFIGDIR}/features-enabled/checker.conf\")")
 | |
| else()
 | |
|   install_if_not_exists(${PROJECT_SOURCE_DIR}/etc/icinga2/features-enabled/checker.conf ${ICINGA2_CONFIGDIR}/features-enabled)
 | |
| endif()
 | |
| 
 | |
| set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)
 |