mirror of
https://github.com/conan-io/conan-center-index.git
synced 2025-08-18 04:21:38 +00:00
(#11182) glshaderpp - fix typo (detected by recipe linter)
This commit is contained in:
@@ -39,7 +39,7 @@ class GLShaderPPConan(ConanFile):
|
||||
tools.check_min_cppstd(self, self._minimum_cpp_standard)
|
||||
min_version = self._minimum_compilers_version.get(str(self.settings.compiler))
|
||||
if not min_version:
|
||||
self.output.warn(f"{self.name} recipe lacks information about the {self.compiler} compiler support.")
|
||||
self.output.warn(f"{self.name} recipe lacks information about the {self.settings.compiler} compiler support.")
|
||||
else:
|
||||
if tools.Version(self.settings.compiler.version) < min_version:
|
||||
raise ConanInvalidConfiguration(f"{self.name} requires C++{self._minimum_cpp_standard} support. The current compiler {self.settings.compiler} {self.settings.compiler.version} does not support it.")
|
||||
|
Reference in New Issue
Block a user