Also use dylib of cpython

Contributes to CURA-9365
This commit is contained in:
j.spijker@ultimaker.com 2022-07-04 12:04:48 +02:00 committed by Jelle Spijker
parent 87e304a4e9
commit 5bc61324ee

View file

@ -169,8 +169,8 @@ class CuraConan(ConanFile):
binaries.append((str(bin), binary["dst"]))
for _, dependency in self.dependencies.host.items():
if dependency.ref.name == "cpython":
continue
# if dependency.ref.name == "cpython":
# continue
for bin_paths in dependency.cpp_info.bindirs:
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")])
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dylib")])