Add copied openssl 1.1.1l binaries to pyinstall binaries

Contributes to CURA-9342
This commit is contained in:
j.spijker@ultimaker.com 2022-07-14 10:38:59 +02:00 committed by Jelle Spijker
parent 57a0c214d1
commit 7068c87130
No known key found for this signature in database
GPG key ID: 6662DC033BE6B99A
2 changed files with 8 additions and 2 deletions

View file

@ -171,6 +171,12 @@ class CuraConan(ConanFile):
for bin in src_path.glob(binary["binary"]):
binaries.append((str(bin), binary["dst"]))
# Add dynamic libs in the venv bin/Script and lib Path. This is needed because we might copy some additional libs
# e.q.: OpenSSL 1.1.1l in that directory with a separate:
# `conan install openssl@1.1.1l -g deploy && cp openssl/bin/*.so cura_inst/bin`
for bin in self._script_dir.glob("*.[so|dll|dylib]"):
binaries.append(str(bin), ".")
for _, dependency in self.dependencies.items():
# if dependency.ref.name == "cpython":
# continue