From 4b46b0b693c0c8cbf192d5455c3a8d45757c3dbd Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Mon, 15 Jan 2018 15:40:48 +0100 Subject: [PATCH] Fix missing static libraries for DB IDO refs #5927 --- icinga-app/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/icinga-app/CMakeLists.txt b/icinga-app/CMakeLists.txt index 3be2db704..2655b31bf 100644 --- a/icinga-app/CMakeLists.txt +++ b/icinga-app/CMakeLists.txt @@ -46,6 +46,10 @@ if(ICINGA2_WITH_COMPAT) add_whole_static_library(icinga-app compat) endif() +if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL) + add_whole_static_library(icinga-app db_ido) +endif() + if(ICINGA2_WITH_MYSQL) add_whole_static_library(icinga-app db_ido_mysql) endif()