From aec34e17eb69b67cb0beb5d2f50f544b6f95d22c Mon Sep 17 00:00:00 2001 From: Not-a-Bug Won't Fix Date: Thu, 7 Jul 2022 15:42:51 +0300 Subject: [PATCH] Fix target_link_libraries signatures mixing --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22362835c..d4759ce13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -434,7 +434,7 @@ target_include_directories(harfbuzz PUBLIC "$" "$") if (HB_HAVE_FREETYPE AND TARGET freetype) - target_link_libraries(harfbuzz PUBLIC freetype) + target_link_libraries(harfbuzz freetype) endif ()