From: Nehal J Wani Date: Tue, 26 Oct 2021 01:54:46 +0000 (-0400) Subject: CMake: add option to skip installing dependency DLLs on Windows X-Git-Tag: 2.50.0~55^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0048c0aa9dbbb542055cdc96c748b1b39027010;p=graphviz 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 --- 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)