Skip to content

Commit

Permalink
Use the correct CURA_RESOURCES path
Browse files Browse the repository at this point in the history
Contribute to NP-186
  • Loading branch information
jellespijker committed May 7, 2024
1 parent 97e8efc commit 4d8a30c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Expand Up @@ -42,8 +42,8 @@ def package(self):
def package_info(self):
self.cpp_info.includedirs = []
self.cpp_info.resdirs = ["res"]
self.runenv_info.append_path("CURA_RESOURCES", os.path.join(self.package_folder, "res"))
self.env_info.CURA_RESOURCES.append(os.path.join(self.package_folder, "res"))
self.runenv_info.append_path("CURA_RESOURCES", os.path.join(self.package_folder, "res", "resources"))
self.env_info.CURA_RESOURCES.append(os.path.join(self.package_folder, "res", "resources"))

def package_id(self):
self.info.clear()

0 comments on commit 4d8a30c

Please sign in to comment.