Rename ICINGA2_WITH_REDIS to ICINGA2_WITH_ICINGADB

This commit is contained in:
Alexander Aleksandrovič Klimov 2019-10-30 10:10:21 +01:00 committed by Michael Friedrich
parent 13ab7eb609
commit 04dfbb07ce
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -53,7 +53,7 @@ if(ICINGA2_WITH_PERFDATA)
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:perfdata>)
endif()
if(ICINGA2_WITH_REDIS)
if(ICINGA2_WITH_ICINGADB)
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:icingadb>)
endif()

View File

@ -53,7 +53,7 @@ if(ICINGA2_WITH_PERFDATA)
add_subdirectory(perfdata)
endif()
if(ICINGA2_WITH_REDIS)
if(ICINGA2_WITH_ICINGADB)
add_subdirectory(icingadb)
endif()