From 56ae875861ab260b80a030f50c4aff9f9dc8fff0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 13:32:39 +0200 Subject: Adding upstream version 2.14.2. Signed-off-by: Daniel Baumann --- lib/CMakeLists.txt | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 lib/CMakeLists.txt (limited to 'lib/CMakeLists.txt') diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt new file mode 100644 index 0000000..aadbb39 --- /dev/null +++ b/lib/CMakeLists.txt @@ -0,0 +1,60 @@ +# Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ + +add_subdirectory(base) +add_subdirectory(cli) +add_subdirectory(config) +add_subdirectory(remote) +add_subdirectory(icinga) +add_subdirectory(methods) + +if(ICINGA2_WITH_CHECKER) + add_subdirectory(checker) +endif() + +if(ICINGA2_WITH_COMPAT) + add_subdirectory(compat) +endif() + +if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL) + add_subdirectory(db_ido) +endif() + +if(ICINGA2_WITH_MYSQL) + find_package(MySQL) + + if(MYSQL_FOUND) + add_subdirectory(db_ido_mysql) + add_subdirectory(mysql_shim) + else() + message(FATAL_ERROR "You have selected MySQL support, but MySQL could not be found. You can disable the MySQL IDO module using -DICINGA2_WITH_MYSQL=OFF.") + endif() +endif() + +if(ICINGA2_WITH_PGSQL) + find_package(PostgreSQL) + + if(PostgreSQL_FOUND) + add_subdirectory(db_ido_pgsql) + add_subdirectory(pgsql_shim) + else() + message(FATAL_ERROR "You have selected PostgreSQL support, but PostgreSQL could not be found. You can disable the PostgreSQL IDO module using -DICINGA2_WITH_PGSQL=OFF.") + endif() +endif() + +if(ICINGA2_WITH_LIVESTATUS) + add_subdirectory(livestatus) +endif() + +if(ICINGA2_WITH_NOTIFICATION) + add_subdirectory(notification) +endif() + +if(ICINGA2_WITH_PERFDATA) + add_subdirectory(perfdata) +endif() + +if(ICINGA2_WITH_ICINGADB) + add_subdirectory(icingadb) +endif() + +set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE) -- cgit v1.2.3