Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-04 13:04:48 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-07-04 13:04:48 +0300
commit5bc61324ee03b420163060b7b48a391338b2b950 (patch)
tree77e5b4d17758e206665f82c1837143cc3c41fbc7 /conanfile.py
parent87e304a4e92dda1e95f92e7b41bafb49b8bea8d0 (diff)
Also use dylib of cpython
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/conanfile.py b/conanfile.py
index 179dc3fcfb..90409ec0e9 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -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")])