From b2f2183639d1da2d30f9044c8dac1fb76f1a0ad1 Mon Sep 17 00:00:00 2001 From: SpaceIm <30052553+SpaceIm@users.noreply.github.com> Date: Wed, 17 Aug 2022 09:13:29 +0200 Subject: [PATCH] add ref to https://github.com/conan-io/conan/issues/11840 --- recipes/libccd/all/conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/libccd/all/conanfile.py b/recipes/libccd/all/conanfile.py index 7dcbecb50376c..31f2cae076e05 100644 --- a/recipes/libccd/all/conanfile.py +++ b/recipes/libccd/all/conanfile.py @@ -55,6 +55,7 @@ def generate(self): tc.variables["BUILD_DOCUMENTATION"] = False tc.variables["ENABLE_DOUBLE_PRECISION"] = self.options.enable_double_precision tc.variables["CCD_HIDE_ALL_SYMBOLS"] = not self.options.shared + # Honor BUILD_SHARED_LIBS from conan_toolchain (see https://github.com/conan-io/conan/issues/11840) tc.cache_variables["CMAKE_POLICY_DEFAULT_CMP0077"] = "NEW" tc.generate()