We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a40ad67 commit 2302a5fCopy full SHA for 2302a5f
cppython/plugins/cmake/schema.py
@@ -50,7 +50,6 @@ class ConfigurePreset(CPPythonModel, extra='allow'):
50
inherits: Annotated[
51
str | list[str] | None, Field(description='The inherits field allows inheriting from other presets.')
52
] = None
53
- binaryDir: Annotated[str | None, Field(description='The binary directory for the build output.')] = None
54
cacheVariables: dict[str, None | bool | str | CacheVariable] | None = None
55
56
@@ -92,4 +91,4 @@ class CMakeConfiguration(CPPythonModel):
92
91
] = Path('CMakePresets.json')
93
configuration_name: Annotated[
94
str, Field(description='The CMake configuration preset to look for and override inside the given `preset_file`')
95
- ] = 'cppython'
+ ] = 'default'
0 commit comments