2013-11-03 13:45:26 +01:00
|
|
|
# Icinga 2
|
2016-01-12 08:29:59 +01:00
|
|
|
# Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/)
|
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.
|
|
|
|
|
2015-03-28 11:04:42 +01:00
|
|
|
mkclass_target(dbconnection.ti dbconnection.tcpp dbconnection.thpp)
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2015-03-17 08:14:46 +01:00
|
|
|
mkembedconfig_target(db_ido-itl.conf db_ido-itl.cpp)
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2014-08-30 18:08:28 +02:00
|
|
|
set(db_ido_SOURCES
|
2015-03-28 11:04:42 +01:00
|
|
|
commanddbobject.cpp dbconnection.cpp dbconnection.thpp
|
2014-11-30 23:32:13 +01:00
|
|
|
db_ido-itl.cpp dbevents.cpp dbobject.cpp dbquery.cpp
|
2015-03-12 09:39:53 +01:00
|
|
|
dbreference.cpp dbtype.cpp dbvalue.cpp endpointdbobject.cpp hostdbobject.cpp
|
|
|
|
hostgroupdbobject.cpp idochecktask.cpp servicedbobject.cpp
|
|
|
|
servicegroupdbobject.cpp timeperioddbobject.cpp userdbobject.cpp
|
2015-06-17 15:45:45 +02:00
|
|
|
usergroupdbobject.cpp zonedbobject.cpp
|
2013-11-03 13:45:26 +01:00
|
|
|
)
|
|
|
|
|
2014-08-30 18:08:28 +02:00
|
|
|
if(ICINGA2_UNITY_BUILD)
|
2016-08-24 11:11:20 +02:00
|
|
|
mkunity_target(db_ido db_ido db_ido_SOURCES)
|
2014-08-30 18:08:28 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(db_ido SHARED ${db_ido_SOURCES})
|
|
|
|
|
2013-11-03 13:45:26 +01:00
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
2014-03-10 15:00:14 +01:00
|
|
|
target_link_libraries(db_ido ${Boost_LIBRARIES} base config icinga remote)
|
2013-11-03 13:45:26 +01:00
|
|
|
|
|
|
|
set_target_properties (
|
|
|
|
db_ido PROPERTIES
|
|
|
|
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
|
|
|
DEFINE_SYMBOL I2_DB_IDO_BUILD
|
|
|
|
FOLDER Lib
|
2016-08-25 17:32:20 +02:00
|
|
|
VERSION ${SPEC_VERSION}
|
2013-11-03 13:45:26 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS db_ido
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR}
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/icinga2
|
|
|
|
)
|