mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
Use bindirs instead of paths
Contributes to CURA-9365
This commit is contained in:
parent
cf1e2bd7af
commit
21e69a8c67
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ class CuraConan(ConanFile):
|
|||
|
||||
conan_binaries = []
|
||||
for _, dependency in self.dependencies.host.items():
|
||||
for bin_paths in dependency.cpp_info.bin_paths:
|
||||
for bin_paths in dependency.cpp_info.bindirs:
|
||||
conan_binaries.extend(Path(bin_paths).glob("**/*.dll"))
|
||||
conan_binaries.extend(Path(bin_paths).glob("**/*.dylib"))
|
||||
conan_binaries.extend(Path(bin_paths).glob("**/*.so"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue