We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26536a5 commit 1c6fac8Copy full SHA for 1c6fac8
recipes/ogre/1.x/conanfile.py
@@ -131,8 +131,8 @@ def validate(self):
131
"""
132
if self.settings.compiler == "gcc" and tools.Version(self.settings.compiler.version) >= 11:
133
raise ConanInvalidConfiguration("OGRE 1.x not supported with gcc version greater than 11")
134
- if self.settings.compiler == "clang" and tools.Version(self.settings.compiler.version) >= 13:
135
- raise ConanInvalidConfiguration("OGRE 1.x not supported with clang version greater than 13")
+ if self.settings.compiler == "clang" and tools.Version(self.settings.compiler.version) >= 11:
+ raise ConanInvalidConfiguration("OGRE 1.x not supported with clang version greater than 11")
136
137
@property
138
def _source_subfolder(self):
0 commit comments