We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eefe37f commit 316081eCopy full SHA for 316081e
conan/conanfile.py
@@ -31,9 +31,10 @@ def validate(self):
31
check_min_cppstd(self, "20")
32
33
34
- # Handled at the profile level for the moment
35
- #def tool_requires(self):
36
- # self.tool_requires("cmake/[>=3.31]")
+ # Note: We expect the profile to require it in a specific version
+ # but having it here makes it simpler for external users.
+ def build_requirements(self):
37
+ self.tool_requires("cmake/[>=3.23]")
38
39
40
def layout(self):
0 commit comments