2014-10-06 14:21:18 +02:00
|
|
|
# Icinga 2
|
|
|
|
# Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
set(cli_SOURCES
|
2014-10-17 15:13:17 +02:00
|
|
|
agentaddcommand.cpp agentblackandwhitelistcommand.cpp agentlistcommand.cpp agentremovecommand.cpp
|
|
|
|
agentsetcommand.cpp agentsetupcommand.cpp agentupdateconfigcommand.cpp agentwizardcommand.cpp agentutility.cpp
|
2014-10-20 13:58:21 +02:00
|
|
|
clicommand.cpp
|
|
|
|
daemoncommand.cpp
|
2014-10-18 19:31:52 +02:00
|
|
|
featureenablecommand.cpp featuredisablecommand.cpp featurelistcommand.cpp featureutility.cpp
|
2014-10-14 16:53:40 +02:00
|
|
|
objectlistcommand.cpp
|
2014-10-21 13:54:56 +02:00
|
|
|
pkinewcacommand.cpp pkinewcertcommand.cpp pkisigncsrcommand.cpp pkirequestcommand.cpp pkisavecertcommand.cpp pkiticketcommand.cpp
|
2014-10-21 13:54:25 +02:00
|
|
|
pkiutility.cpp
|
2014-10-17 14:13:31 +02:00
|
|
|
repositoryobjectcommand.cpp
|
2014-10-20 21:14:00 +02:00
|
|
|
variablegetcommand.cpp variablelistcommand.cpp
|
2014-10-20 18:37:19 +02:00
|
|
|
repositorycommitcommand.cpp repositoryobjectcommand.cpp repositoryutility.cpp
|
2014-10-06 14:21:18 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if(ICINGA2_UNITY_BUILD)
|
|
|
|
mkunity_target(cli cli_SOURCES)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(cli SHARED ${cli_SOURCES})
|
|
|
|
|
2014-10-17 13:03:01 +02:00
|
|
|
target_link_libraries(cli ${Boost_LIBRARIES} base config remote icinga)
|
2014-10-06 14:21:18 +02:00
|
|
|
|
|
|
|
set_target_properties (
|
|
|
|
cli PROPERTIES
|
|
|
|
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
2014-10-20 20:04:26 +02:00
|
|
|
DEFINE_SYMBOL I2_CLI_BUILD
|
2014-10-06 14:21:18 +02:00
|
|
|
FOLDER Lib
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS cli
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR}
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/icinga2
|
|
|
|
)
|