2014-03-07 17:40:10 +01:00
|
|
|
# Icinga 2
|
2014-04-23 15:57:58 +02:00
|
|
|
# Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)
|
2014-03-07 17:40:10 +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.
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
mkclass_target(apilistener.ti apilistener.thpp)
|
|
|
|
mkclass_target(endpoint.ti endpoint.thpp)
|
|
|
|
mkclass_target(zone.ti zone.thpp)
|
2014-03-07 17:40:10 +01:00
|
|
|
|
|
|
|
mkembedconfig_target(remote-type.conf remote-type.cpp)
|
|
|
|
|
|
|
|
add_library(remote SHARED
|
2014-05-13 13:18:27 +02:00
|
|
|
apiclient.cpp apifunction.cpp apilistener.cpp apilistener-sync.cpp
|
2014-05-25 16:23:35 +02:00
|
|
|
apilistener.thpp authority.cpp endpoint.cpp endpoint.thpp jsonrpc.cpp
|
|
|
|
messageorigin.cpp remote-type.cpp zone.cpp zone.thpp
|
2014-03-07 17:40:10 +01:00
|
|
|
)
|
|
|
|
|
2014-03-10 15:00:14 +01:00
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
2014-03-07 17:40:10 +01:00
|
|
|
target_link_libraries(remote ${Boost_LIBRARIES} base config)
|
|
|
|
|
|
|
|
set_target_properties (
|
2014-03-10 15:00:14 +01:00
|
|
|
remote PROPERTIES
|
2014-03-07 17:40:10 +01:00
|
|
|
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
2014-03-10 15:00:14 +01:00
|
|
|
DEFINE_SYMBOL I2_REMOTE_BUILD
|
2014-03-07 17:40:10 +01:00
|
|
|
FOLDER Lib
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS remote
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR}
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/icinga2
|
|
|
|
)
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
#install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/icinga2/api\")")
|
|
|
|
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/icinga2/api/log\")")
|
|
|
|
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/icinga2/api/repository\")")
|
2014-05-13 13:18:27 +02:00
|
|
|
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/icinga2/api/zones\")")
|
|
|
|
|
2014-03-07 17:40:10 +01:00
|
|
|
|