File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ class ConfigurePreset(CPPythonModel, extra='allow'):
4646 """Partial Configure Preset specification to allow cache variable injection"""
4747
4848 name : str
49+ description : Annotated [str | None , Field (description = 'A human-readable description of the preset.' )] = None
50+
4951 hidden : Annotated [bool | None , Field (description = 'If true, the preset is hidden and cannot be used directly.' )] = (
5052 None
5153 )
@@ -68,6 +70,8 @@ class BuildPreset(CPPythonModel, extra='allow'):
6870 """Partial Build Preset specification for CMake build presets"""
6971
7072 name : str
73+ description : Annotated [str | None , Field (description = 'A human-readable description of the preset.' )] = None
74+
7175 hidden : Annotated [bool | None , Field (description = 'If true, the preset is hidden and cannot be used directly.' )] = (
7276 None
7377 )
You can’t perform that action at this time.
0 commit comments