You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/scikit_build_core/resources/scikit-build.schema.json
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,14 @@
25
25
"type": "object",
26
26
"patternProperties": {
27
27
".+": {
28
-
"type": "string"
28
+
"oneOf": [
29
+
{
30
+
"type": "string"
31
+
},
32
+
{
33
+
"type": "boolean"
34
+
}
35
+
]
29
36
}
30
37
},
31
38
"description": "A table of defines to pass to CMake when configuring the project. Additive."
@@ -42,7 +49,7 @@
42
49
},
43
50
"source-dir": {
44
51
"type": "string",
45
-
"default": "",
52
+
"default": ".",
46
53
"description": "The source directory to use when building the project. Currently only affects the native builder (not the setuptools plugin)."
47
54
},
48
55
"targets": {
@@ -103,11 +110,6 @@
103
110
"type": "boolean",
104
111
"default": true,
105
112
"description": "If set to True, try to build a reproducible distribution (Unix and Python 3.9+ recommended). ``SOURCE_DATE_EPOCH`` will be used for timestamps, or a fixed value if not set."
106
-
},
107
-
"cmake": {
108
-
"type": "boolean",
109
-
"default": false,
110
-
"description": "If set to True, CMake will be run before building the SDist."
0 commit comments