From 6d4f44ce03a6b8d17ab2951e261bb38bb2f393ad Mon Sep 17 00:00:00 2001 From: Nehal J Wani Date: Tue, 26 Oct 2021 16:30:29 -0400 Subject: [PATCH] plugin/gd: install GD DLLs only if install_win_dependency_dlls is ON --- plugin/gd/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gd/CMakeLists.txt b/plugin/gd/CMakeLists.txt index fe7ed264d..9f3c6c413 100644 --- a/plugin/gd/CMakeLists.txt +++ b/plugin/gd/CMakeLists.txt @@ -36,7 +36,7 @@ install( ) # Include DLLs with this library on Windows -if (WIN32) +if (WIN32 AND install_win_dependency_dlls) install( FILES ${GD_RUNTIME_LIBRARIES} -- 2.40.0