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.
|
|
|
|
|
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
|
2017-12-24 08:18:33 +01:00
|
|
|
i2-db_ido.hpp db_ido-itl.cpp
|
|
|
|
commanddbobject.cpp commanddbobject.hpp
|
|
|
|
dbconnection.cpp dbconnection.hpp dbconnection.thpp
|
|
|
|
dbevents.cpp dbevents.hpp
|
|
|
|
dbobject.cpp dbobject.hpp
|
|
|
|
dbquery.cpp dbquery.hpp
|
|
|
|
dbreference.cpp dbreference.hpp
|
|
|
|
dbtype.cpp dbtype.hpp
|
|
|
|
dbvalue.cpp dbvalue.hpp
|
|
|
|
endpointdbobject.cpp endpointdbobject.hpp
|
|
|
|
hostdbobject.cpp hostdbobject.hpp
|
|
|
|
hostgroupdbobject.cpp hostgroupdbobject.hpp
|
|
|
|
idochecktask.cpp idochecktask.hpp
|
|
|
|
servicedbobject.cpp servicedbobject.hpp
|
|
|
|
servicegroupdbobject.cpp servicegroupdbobject.hpp
|
|
|
|
timeperioddbobject.cpp timeperioddbobject.hpp
|
|
|
|
userdbobject.cpp userdbobject.hpp
|
|
|
|
usergroupdbobject.cpp usergroupdbobject.hpp
|
|
|
|
zonedbobject.cpp zonedbobject.hpp
|
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()
|
|
|
|
|
2017-12-31 07:22:16 +01:00
|
|
|
add_library(db_ido STATIC ${db_ido_SOURCES})
|
2014-08-30 18:08:28 +02:00
|
|
|
|
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
|
|
|
|
FOLDER Lib
|
|
|
|
)
|