diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:32:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:32:39 +0000 |
commit | 56ae875861ab260b80a030f50c4aff9f9dc8fff0 (patch) | |
tree | 531412110fc901a5918c7f7442202804a83cada9 /lib/CMakeLists.txt | |
parent | Initial commit. (diff) | |
download | icinga2-56ae875861ab260b80a030f50c4aff9f9dc8fff0.tar.xz icinga2-56ae875861ab260b80a030f50c4aff9f9dc8fff0.zip |
Adding upstream version 2.14.2.upstream/2.14.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/CMakeLists.txt')
-rw-r--r-- | lib/CMakeLists.txt | 60 |
1 files changed, 60 insertions, 0 deletions
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) |