From 4540bbf66e71d4626bf2c3192d194c08d11b551a Mon Sep 17 00:00:00 2001 From: Matej Kenda Date: Thu, 9 Oct 2025 10:31:47 +0200 Subject: [PATCH] fix(Foundation): Correct target_link_libraries to link properly with static build also --- Foundation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CMakeLists.txt b/Foundation/CMakeLists.txt index e3ef158ae..693532e06 100644 --- a/Foundation/CMakeLists.txt +++ b/Foundation/CMakeLists.txt @@ -65,7 +65,7 @@ else() target_compile_definitions(Foundation PUBLIC UTF8PROC_STATIC) endif() -target_link_libraries(Foundation PRIVATE V8::DoubleConversion) +target_link_libraries(Foundation PRIVATE "$") add_library(Poco::Foundation ALIAS Foundation) set_target_properties(Foundation