diff --git a/CMakeLists.txt b/CMakeLists.txt index 59e0533d5..d2d77926a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ option(ICINGA2_WITH_COMPAT "Build the compat module" ON) option(ICINGA2_WITH_LIVESTATUS "Build the Livestatus module" ON) option(ICINGA2_WITH_NOTIFICATION "Build the notification module" ON) option(ICINGA2_WITH_PERFDATA "Build the perfdata module" ON) -option(ICINGA2_WITH_REDIS "Build the redis module" ON) +option(ICINGA2_WITH_ICINGADB "Build the IcingaDB module" ON) option(ICINGA2_WITH_TESTS "Run unit tests" ON) option (USE_SYSTEMD diff --git a/icinga-app/CMakeLists.txt b/icinga-app/CMakeLists.txt index db8daae30..ef71ad999 100644 --- a/icinga-app/CMakeLists.txt +++ b/icinga-app/CMakeLists.txt @@ -53,7 +53,7 @@ if(ICINGA2_WITH_PERFDATA) list(APPEND icinga_app_SOURCES $) endif() -if(ICINGA2_WITH_REDIS) +if(ICINGA2_WITH_ICINGADB) list(APPEND icinga_app_SOURCES $) endif() diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index c3baa2755..aadbb39ad 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -53,7 +53,7 @@ if(ICINGA2_WITH_PERFDATA) add_subdirectory(perfdata) endif() -if(ICINGA2_WITH_REDIS) +if(ICINGA2_WITH_ICINGADB) add_subdirectory(icingadb) endif()