Mareena Fernando
Mareena Fernando
Hi @memsharded, So, Don't we need to define what `self.export_sources_folder` is in layout() method or anywhere? Because, in my case, I'll put a print line in my conanfile.py for `self.export_sources_folder`,...
Thank you @memsharded No. I don't want to change it. I got confused cause print line gave me different output other than the folder in the Conan cache. And I...
Hi @memsharded I'll add our repo structure little bit more clear. And I can't change that structure. I have to continue the Conan migration to 2.0 with this structure. That's...
Thank you very much @memsharded
Hi @memsharded `self.folders.build = f"mybuild/{self.name}"` What is **mybuild** folder you are referring to? Is it build folder in the above attached image inside the mtech folder? If it's same, is...
Thank you @memsharded for the explanation. > Do you mean self.build_folder? Not sure what is the question Yes, can we access this ` self.folders.build = f"mybuild/{self.name}"` without using **"mybuild"** folder...
> You can use self.folders.build = f"build/{self.name}", no need to use "mybuild" So, is it necessary to use folder name like above right? > The current dir is the recipe...
> You can use self.folders.build = f"build/{self.name}", no need to use "mybuild" `self.folders.build = f"/{self.name}"` is there any method to define `self.folders.build ` without using this folder name?
Okay. Thank you very much @memsharded . My issue is sorted for now. I'll Close this issue with this comment.
Hi @memsharded, How can I access folders in my root folder in package()? As example I want to copy files from scripts folder to package folder in conan cache and...