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
+47Lines changed: 47 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,53 @@
96
96
"search": {
97
97
"additionalProperties": false,
98
98
"properties": {
99
+
"modules": {
100
+
"description": "List or dict of CMake module search paths. Dict from is used to override another package's entry-point definition. Populates `CMAKE_MODULE_PATH`.",
101
+
"oneOf": [
102
+
{
103
+
"type": "array",
104
+
"items": {
105
+
"type": "string"
106
+
}
107
+
},
108
+
{
109
+
"type": "object",
110
+
"patternProperties": {
111
+
".+": {
112
+
"type": "string"
113
+
}
114
+
}
115
+
}
116
+
]
117
+
},
118
+
"prefixes": {
119
+
"description": "List or dict of CMake prefix search paths. Dict from is used to override another package's entry-point definition. Populates `CMAKE_PREFIX_PATH`.",
120
+
"oneOf": [
121
+
{
122
+
"type": "array",
123
+
"items": {
124
+
"type": "string"
125
+
}
126
+
},
127
+
{
128
+
"type": "object",
129
+
"patternProperties": {
130
+
".+": {
131
+
"type": "string"
132
+
}
133
+
}
134
+
}
135
+
]
136
+
},
137
+
"roots": {
138
+
"description": "Dict of package names and prefix paths. Populates `<Pkg>_ROOT`.",
139
+
"type": "object",
140
+
"patternProperties": {
141
+
".+": {
142
+
"type": "string"
143
+
}
144
+
}
145
+
},
99
146
"use-build-prefix": {
100
147
"default": true,
101
148
"description": "Add the wheel build path to the CMake prefix paths.",
0 commit comments