From 90610027c178d30f08b9743e1ddd3aa9a635196e Mon Sep 17 00:00:00 2001 From: Nehal J Wani Date: Tue, 26 Oct 2021 16:31:02 -0400 Subject: [PATCH] plugin/pango: install pango/cairo DLLs only if install_win_dependency_dlls is ON --- plugin/pango/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/pango/CMakeLists.txt b/plugin/pango/CMakeLists.txt index c423dd934..92fc10f73 100644 --- a/plugin/pango/CMakeLists.txt +++ b/plugin/pango/CMakeLists.txt @@ -42,7 +42,7 @@ install( ) # Include DLLs with this library on Windows -if (WIN32) +if (WIN32 AND install_win_dependency_dlls) install( FILES ${Cairo_RUNTIME_LIBRARIES} -- 2.40.0