From cf9be1c3f241af73f52e12963e6195d785cb43eb Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Sat, 16 Mar 2024 22:18:27 +0300 Subject: [PATCH] - temporary workaround to build with qualtest softphone --- src/engine/helper/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/helper/CMakeLists.txt b/src/engine/helper/CMakeLists.txt index 3f37c3c3..d5b14d30 100644 --- a/src/engine/helper/CMakeLists.txt +++ b/src/engine/helper/CMakeLists.txt @@ -23,5 +23,6 @@ if (USE_NULL_UUID) endif() if (NOT USE_NULL_UUID) - target_link_libraries(helper_lib PUBLIC uuid) + message("Warning: uuid library will be linked!") + #target_link_libraries(helper_lib PUBLIC uuid) endif()