icinga2/lib/remote/CMakeLists.txt

71 lines
2.7 KiB
CMake
Raw Normal View History

# Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+
2018-01-18 13:50:38 +01:00
mkclass_target(apilistener.ti apilistener-ti.cpp apilistener-ti.hpp)
mkclass_target(apiuser.ti apiuser-ti.cpp apiuser-ti.hpp)
mkclass_target(endpoint.ti endpoint-ti.cpp endpoint-ti.hpp)
mkclass_target(zone.ti zone-ti.cpp zone-ti.hpp)
set(remote_SOURCES
i2-remote.hpp
actionshandler.cpp actionshandler.hpp
apiaction.cpp apiaction.hpp
apiclient.cpp apiclient.hpp
apifunction.cpp apifunction.hpp
2018-01-18 13:50:38 +01:00
apilistener.cpp apilistener.hpp apilistener-ti.hpp apilistener-configsync.cpp apilistener-filesync.cpp
apilistener-authority.cpp
2018-01-18 13:50:38 +01:00
apiuser.cpp apiuser.hpp apiuser-ti.hpp
configfileshandler.cpp configfileshandler.hpp
configobjectutility.cpp configobjectutility.hpp
configpackageshandler.cpp configpackageshandler.hpp
configpackageutility.cpp configpackageutility.hpp
configstageshandler.cpp configstageshandler.hpp
consolehandler.cpp consolehandler.hpp
createobjecthandler.cpp createobjecthandler.hpp
deleteobjecthandler.cpp deleteobjecthandler.hpp
2018-01-18 13:50:38 +01:00
endpoint.cpp endpoint.hpp endpoint-ti.hpp
eventqueue.cpp eventqueue.hpp
eventshandler.cpp eventshandler.hpp
filterutility.cpp filterutility.hpp
httpchunkedencoding.cpp httpchunkedencoding.hpp
httpclientconnection.cpp httpclientconnection.hpp
httphandler.cpp httphandler.hpp
httprequest.cpp httprequest.hpp
httpresponse.cpp httpresponse.hpp
httpserverconnection.cpp httpserverconnection.hpp
httputility.cpp httputility.hpp
infohandler.cpp infohandler.hpp
jsonrpc.cpp jsonrpc.hpp
jsonrpcconnection.cpp jsonrpcconnection.hpp jsonrpcconnection-heartbeat.cpp jsonrpcconnection-pki.cpp
messageorigin.cpp messageorigin.hpp
modifyobjecthandler.cpp modifyobjecthandler.hpp
objectqueryhandler.cpp objectqueryhandler.hpp
pkiutility.cpp pkiutility.hpp
statushandler.cpp statushandler.hpp
templatequeryhandler.cpp templatequeryhandler.hpp
typequeryhandler.cpp typequeryhandler.hpp
url.cpp url.hpp url-characters.hpp
variablequeryhandler.cpp variablequeryhandler.hpp
2018-01-18 13:50:38 +01:00
zone.cpp zone.hpp zone-ti.hpp
)
if(ICINGA2_UNITY_BUILD)
mkunity_target(remote remote remote_SOURCES)
endif()
add_library(remote OBJECT ${remote_SOURCES})
add_dependencies(remote base config)
set_target_properties (
2014-03-10 15:00:14 +01:00
remote PROPERTIES
FOLDER Lib
)
#install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_DATADIR}/api\")")
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_DATADIR}/api/log\")")
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_DATADIR}/api/zones\")")
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_DATADIR}/certs\")")
install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${ICINGA2_FULL_DATADIR}/certificate-requests\")")