mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Fixed Ultimaker-Cura spec
Contributes to CURA-9365
This commit is contained in:
parent
21e69a8c67
commit
c4aee2a6b6
2 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,7 @@ exe = EXE(
|
|||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
icon='{{ icon }}'
|
||||
icon=r'{{ icon }}'
|
||||
)
|
||||
coll = COLLECT(
|
||||
exe,
|
||||
|
|
|
@ -170,6 +170,8 @@ class CuraConan(ConanFile):
|
|||
|
||||
conan_binaries = []
|
||||
for _, dependency in self.dependencies.host.items():
|
||||
if dependency.ref.name == "cpython":
|
||||
continue
|
||||
for bin_paths in dependency.cpp_info.bindirs:
|
||||
conan_binaries.extend(Path(bin_paths).glob("**/*.dll"))
|
||||
conan_binaries.extend(Path(bin_paths).glob("**/*.dylib"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue