icinga2/icinga-app/CMakeLists.txt

106 lines
2.9 KiB
CMake
Raw Normal View History

2013-11-03 13:45:26 +01:00
# Icinga 2
2018-01-02 12:06:00 +01:00
# Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)
2013-11-03 13:45:26 +01:00
#
# 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.
if(MSVC)
set(WindowsSources icinga.rc)
else()
set(WindowsSources "")
endif()
2017-12-31 07:22:16 +01:00
set(icingaloader_SOURCES
icinga.cpp
${WindowsSources}
)
add_library(icingaloader OBJECT ${icingaloader_SOURCES})
add_dependencies(icingaloader base config cli)
2013-11-03 13:45:26 +01:00
include_directories(${Boost_INCLUDE_DIRS})
2017-12-31 07:22:16 +01:00
add_executable(icinga-app $<TARGET_OBJECTS:icingaloader>)
add_whole_static_library(icinga-app base)
add_whole_static_library(icinga-app config)
add_whole_static_library(icinga-app remote)
add_whole_static_library(icinga-app cli)
if(ICINGA2_WITH_CHECKER)
add_whole_static_library(icinga-app checker)
endif()
if(ICINGA2_WITH_COMPAT)
add_whole_static_library(icinga-app compat)
endif()
if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
add_whole_static_library(icinga-app db_ido)
endif()
2017-12-31 07:22:16 +01:00
if(ICINGA2_WITH_MYSQL)
add_whole_static_library(icinga-app db_ido_mysql)
endif()
if(ICINGA2_WITH_PGSQL)
add_whole_static_library(icinga-app db_ido_pgsql)
endif()
add_whole_static_library(icinga-app icinga)
if(ICINGA2_WITH_LIVESTATUS)
add_whole_static_library(icinga-app livestatus)
endif()
add_whole_static_library(icinga-app methods)
if(ICINGA2_WITH_NOTIFICATION)
add_whole_static_library(icinga-app notification)
endif()
if(ICINGA2_WITH_PERFDATA)
add_whole_static_library(icinga-app perfdata)
endif()
2013-11-03 13:45:26 +01:00
set_target_properties (
icinga-app PROPERTIES
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
FOLDER Bin
OUTPUT_NAME icinga2
)
if(WIN32)
set(InstallPath "${CMAKE_INSTALL_SBINDIR}")
else()
configure_file(icinga2.cmake ${CMAKE_CURRENT_BINARY_DIR}/icinga2 @ONLY)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/icinga2
DESTINATION ${CMAKE_INSTALL_SBINDIR}
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
set(InstallPath "${CMAKE_INSTALL_LIBDIR}/icinga2/sbin")
endif()
2013-11-03 13:45:26 +01:00
install(
TARGETS icinga-app
RUNTIME DESTINATION ${InstallPath}
2013-11-03 13:45:26 +01:00
)
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/icinga2\")")
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/icinga2\")")
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_RUNDIR}/icinga2\")")