]> granicus.if.org Git - graphviz/commitdiff
CMake: add option to skip installing dependency DLLs on Windows
authorNehal J Wani <nehaljw.kkd1@gmail.com>
Tue, 26 Oct 2021 01:54:46 +0000 (21:54 -0400)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 1 Nov 2021 14:58:19 +0000 (07:58 -0700)
Helps packaging ecosystems like Conda which use dependencies from other
packages, and do not always vendor 3rd party libraries during packaging

CMakeLists.txt

index fc9cdc3564cb40f648c4881e9419bbff7fcc126c..98eaaa7c525a7f7cff2f32ece4dccfae863ea165 100644 (file)
@@ -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)