mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 15:59:02 +08:00
Don't check for shared
Contributes to CURA-9711
This commit is contained in:
parent
ad65ffa76c
commit
e2cf889f7f
@ -218,11 +218,6 @@ class CuraConan(ConanFile):
|
|||||||
|
|
||||||
# Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller
|
# Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller
|
||||||
for _, dependency in self.dependencies.host.items():
|
for _, dependency in self.dependencies.host.items():
|
||||||
try:
|
|
||||||
is_shared = dependency.options.shared
|
|
||||||
except ConanException:
|
|
||||||
is_shared = False
|
|
||||||
if is_shared:
|
|
||||||
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("**/*")])
|
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*")])
|
||||||
for lib_paths in dependency.cpp_info.libdirs:
|
for lib_paths in dependency.cpp_info.libdirs:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user