From 2a01f5cf13951e395bf5482c28e7b39ffe3cc9b9 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Tue, 19 Mar 2019 17:16:25 -0300 Subject: [PATCH] lapack only works as shared on Windows Signed-off-by: Uilian Ries --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index e62cc34..b8bbd9d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -28,6 +28,7 @@ def config_options(self): del self.options.fPIC if self.settings.compiler == "Visual Studio": self.options["lapack"].visual_studio = True + self.options["lapack"].shared = True def configure(self): del self.settings.compiler.libcxx