From 6ea91e5334c8ef26c449d7b9daf49bd8f719aea6 Mon Sep 17 00:00:00 2001 From: Justin Bonus Date: Sun, 29 Sep 2024 14:57:49 -0700 Subject: [PATCH] Update conanfile.py versions Trying out versions from HydroUQ's conanfile to address failing Ubuntu1804 build on appveyor. May need to be reverted if not available on the release PC --- conanfile.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/conanfile.py b/conanfile.py index 07c9b4a2..7adbad08 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,17 +1,18 @@ - from conans import ConanFile class EEUQ(ConanFile): settings = "os", "compiler", "build_type", "arch" - version = "2.2.3" + version = "4.0.0" license = "BSD" author = "NHERI SimCenter" - url = "https://github.com/NHERI-SimCenter/PBE" + url = "https://github.com/NHERI-SimCenter/EE-UQ" description = "NHERI SimCenter Earthquake Engineering with Uncertainty Quantification Research Tool" settings = "os", "compiler", "build_type", "arch" generators = "qmake" requires = "jansson/2.13.1", \ - "zlib/1.2.11" + "libcurl/8.1.1", \ + "zlib/1.2.11", \ + "openssl/3.2.2" build_policy = "missing" @@ -39,6 +40,8 @@ def imports(self): self.copy("createEVENT/multiple*", dst=appsDestination, src="bin") self.copy("createEVENT/siteRes*", dst=appsDestination, src="bin") self.copy("createEVENT/stochasticGr*", dst=appsDestination, src="bin") + self.copy("createEVENT/SimCenterEvent*", dst=appsDestination, src="bin") + self.copy("createEVENT/TaichiEvent", dst=appsDestination, src="bin") self.copy("createSAM/*", dst=appsDestination, src="bin") self.copy("createEDP/*", dst=appsDestination, src="bin")