use append

Contribute to NP-186
This commit is contained in:
Jelle Spijker 2024-05-06 15:22:07 +02:00
parent 8be474df39
commit 0ae3574b05
No known key found for this signature in database
GPG key ID: 0E9129B3096F4E72

View file

@ -59,7 +59,7 @@ class CuraResource(ConanFile):
def package_info(self):
self.cpp_info.includedirs = []
self.runenv_info.append_path("CURA_RESOURCES", os.path.join(self.package_folder, "res"))
self.env_info.CURA_RESOURCES.append_path(os.path.join(self.package_folder, "res"))
self.env_info.CURA_RESOURCES.append(os.path.join(self.package_folder, "res"))
def package_id(self):
self.info.clear()