From f50146962d1551a09f5cd5577028142e4af2539a Mon Sep 17 00:00:00 2001
From: Bartosz Podrygajlo <bartosz.podrygajlo@openairinterface.org>
Date: Tue, 17 Dec 2024 17:26:41 +0100
Subject: [PATCH] Fix instrumentation target for older CMake versions

---
 common/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
index 229c93b0432..f58880b04a4 100644
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -3,7 +3,7 @@ add_subdirectory(config/yaml)
 
 configure_file(oai_version.h.in oai_version.h @ONLY)
 
-add_library(instrumentation INTERFACE instrumentation.h)
+add_library(instrumentation INTERFACE)
 target_include_directories(instrumentation INTERFACE .)
 if (TRACY_ENABLE)
   target_link_libraries(instrumentation INTERFACE Tracy::TracyClient)
-- 
GitLab