From e737ee762fee6b22fc46bc42546e56b4735c1079 Mon Sep 17 00:00:00 2001
From: Florian Uhlig <f.uhlig@gsi.de>
Date: Wed, 11 May 2022 16:40:21 +0200
Subject: [PATCH] Make build system happy

The code checker must know the libraries so to make him happy just
define them.
---
 external/CMakeLists.txt | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt
index 7d4679e3cb..86b0e1618f 100644
--- a/external/CMakeLists.txt
+++ b/external/CMakeLists.txt
@@ -62,4 +62,15 @@ else()
   add_library(NICAFEMTO SHARED IMPORTED GLOBAL)
   add_library(KFPARTICLE SHARED IMPORTED GLOBAL)
   add_library(external::yaml-cpp STATIC IMPORTED GLOBAL)
+  set_target_properties(external::yaml-cpp PROPERTIES
+                        IMPORTED_LOCATION external::yaml-cpp-NOTFOUND
+             )
+  add_library(external::fles_ipc STATIC IMPORTED GLOBAL)
+  set_target_properties(external::fles_ipc PROPERTIES
+                        IMPORTED_LOCATION external::fles_ipc-NOTFOUND
+                       )
+  add_library(external::fles_logging STATIC IMPORTED GLOBAL)
+  set_target_properties(external::fles_logging PROPERTIES
+                        IMPORTED_LOCATION external::fles_logging-NOTFOUND
+             )
 endif()
-- 
GitLab