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
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,36 @@
96
96
"search": {
97
97
"additionalProperties": false,
98
98
"properties": {
99
+
"modules": {
100
+
"description": "List of additional CMake module search paths. Populates `CMAKE_MODULE_PATH`.",
101
+
"type": "array",
102
+
"items": {
103
+
"type": "string"
104
+
}
105
+
},
106
+
"prefixes": {
107
+
"description": "List of additional CMake prefix search paths. Populates `CMAKE_PREFIX_PATH`.",
108
+
"type": "array",
109
+
"items": {
110
+
"type": "string"
111
+
}
112
+
},
113
+
"roots": {
114
+
"description": "Dict of package names and prefix paths. Populates `<Pkg>_ROOT`.",
115
+
"type": "object",
116
+
"patternProperties": {
117
+
".+": {
118
+
"type": "string"
119
+
}
120
+
}
121
+
},
122
+
"ignore_entry_point": {
123
+
"description": "Entry points to ignore. Any entry-point in `cmake.module`, `cmake.prefix`, `cmake.root` with a key value matching a value in this list will be ignored when building the search paths.",
124
+
"type": "array",
125
+
"items": {
126
+
"type": "string"
127
+
}
128
+
},
99
129
"use-site-packages": {
100
130
"default": true,
101
131
"description": "Add the install (or build isolation) site_packages folder to the CMake prefix paths.",
0 commit comments