mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 17:58:59 +08:00
Add more debug printed information
This commit is contained in:
parent
440b51c189
commit
b78143546c
@ -203,7 +203,10 @@ class CuraConan(ConanFile):
|
|||||||
else:
|
else:
|
||||||
if data["package"] not in self.dependencies:
|
if data["package"] not in self.dependencies:
|
||||||
continue
|
continue
|
||||||
print(data["package"], dir(self.dependencies[data["package"]]))
|
print("#########################################", data["package"])
|
||||||
|
print(dir(self.dependencies[data["package"]]))
|
||||||
|
for attr in dir(self.dependencies[data["package"]]):
|
||||||
|
print(attr, self.dependencies[data["package"]].__getattribute__(attr))
|
||||||
src_path = os.path.join(self.dependencies[data["package"]].package_folder, data["src"])
|
src_path = os.path.join(self.dependencies[data["package"]].package_folder, data["src"])
|
||||||
elif "root" in data: # get the paths relative from the install folder
|
elif "root" in data: # get the paths relative from the install folder
|
||||||
src_path = os.path.join(self.install_folder, data["root"], data["src"])
|
src_path = os.path.join(self.install_folder, data["root"], data["src"])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user