Skip to content

Commit 2302a5f

Browse files
committed
Remove CMake BinaryDir Req
1 parent a40ad67 commit 2302a5f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cppython/plugins/cmake/schema.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ class ConfigurePreset(CPPythonModel, extra='allow'):
5050
inherits: Annotated[
5151
str | list[str] | None, Field(description='The inherits field allows inheriting from other presets.')
5252
] = None
53-
binaryDir: Annotated[str | None, Field(description='The binary directory for the build output.')] = None
5453
cacheVariables: dict[str, None | bool | str | CacheVariable] | None = None
5554

5655

@@ -92,4 +91,4 @@ class CMakeConfiguration(CPPythonModel):
9291
] = Path('CMakePresets.json')
9392
configuration_name: Annotated[
9493
str, Field(description='The CMake configuration preset to look for and override inside the given `preset_file`')
95-
] = 'cppython'
94+
] = 'default'

0 commit comments

Comments
 (0)