mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-02 11:33:57 -06:00
Also use dylib of cpython
Contributes to CURA-9365
This commit is contained in:
parent
87e304a4e9
commit
5bc61324ee
1 changed files with 2 additions and 2 deletions
|
@ -169,8 +169,8 @@ class CuraConan(ConanFile):
|
||||||
binaries.append((str(bin), binary["dst"]))
|
binaries.append((str(bin), binary["dst"]))
|
||||||
|
|
||||||
for _, dependency in self.dependencies.host.items():
|
for _, dependency in self.dependencies.host.items():
|
||||||
if dependency.ref.name == "cpython":
|
# if dependency.ref.name == "cpython":
|
||||||
continue
|
# continue
|
||||||
for bin_paths in dependency.cpp_info.bindirs:
|
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("**/*.dll")])
|
||||||
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dylib")])
|
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dylib")])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue