From b0048c0aa9dbbb542055cdc96c748b1b39027010 Mon Sep 17 00:00:00 2001 From: Nehal J Wani Date: Mon, 25 Oct 2021 21:54:46 -0400 Subject: [PATCH] CMake: add option to skip installing dependency DLLs on Windows Helps packaging ecosystems like Conda which use dependencies from other packages, and do not always vendor 3rd party libraries during packaging --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc9cdc356..98eaaa7c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,8 @@ if (WIN32) # libraries, so the GVDLL symbol can be unconditionally set until # such support is introduced. add_definitions(-DGVDLL) + + option(install_win_dependency_dlls "Install 3rd party dependencies" ON) endif() if (with_digcola) -- 2.40.0