Skip to content

Commit

Permalink
Announce minizip only for newer versions as the v1.1.1 test package d…
Browse files Browse the repository at this point in the history
…oesn't find it
  • Loading branch information
irieger committed Mar 16, 2024
1 parent 606e6be commit 1225c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/opencolorio/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,12 @@ def package_info(self):
self.cpp_info.libs = ["OpenColorIO"]

self.cpp_info.requires.append("expat::expat")
self.cpp_info.requires.append("minizip-ng::minizip")
self.cpp_info.requires.append("yaml-cpp::yaml-cpp")
self.cpp_info.requires.append("openexr::openexr")
self.cpp_info.requires.append("lcms::lcms")
if Version(self.version) >= "2.0.0":
self.cpp_info.requires.append("pystring::pystring")
self.cpp_info.requires.append("minizip-ng::minizip")
else:
self.cpp_info.requires.append("tinyxml::tinyxml")
if Version(self.version) >= "2.2.0":
Expand Down

0 comments on commit 1225c96

Please sign in to comment.