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: docs/reference/configs.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,6 +176,14 @@ print(mk_skbuild_docs())
176
176
DEPRECATED in 0.8; use version instead.
177
177
```
178
178
179
+
```{eval-rst}
180
+
.. confval:: cmake.python-hints
181
+
:type: ``bool``
182
+
:default: true
183
+
184
+
Do not pass the current environment's python hints such as ``Python_EXECUTABLE``. Primarily used for cross-compilation where the CMAKE_TOOLCHAIN_FILE should handle it instead.
185
+
```
186
+
179
187
```{eval-rst}
180
188
.. confval:: cmake.source-dir
181
189
:type: ``Path``
@@ -191,6 +199,13 @@ print(mk_skbuild_docs())
191
199
DEPRECATED in 0.10; use build.targets instead.
192
200
```
193
201
202
+
```{eval-rst}
203
+
.. confval:: cmake.toolchain-file
204
+
:type: ``Path``
205
+
206
+
The CMAKE_TOOLCHAIN_FILE used for cross-compilation.
207
+
```
208
+
194
209
```{eval-rst}
195
210
.. confval:: cmake.verbose
196
211
:type: ``bool``
@@ -440,4 +455,11 @@ print(mk_skbuild_docs())
440
455
The Python tags. The default (empty string) will use the default Python version. You can also set this to "cp38" to enable the CPython 3.8+ Stable ABI / Limited API (only on CPython and if the version is sufficient, otherwise this has no effect). Or you can set it to "py3" or "py2.py3" to ignore Python ABI compatibility. The ABI tag is inferred from this tag.
441
456
```
442
457
458
+
```{eval-rst}
459
+
.. confval:: wheel.tags
460
+
:type: ``list[str]``
461
+
462
+
Manually specify the wheel tags to use, ignoring other inputs such as ``wheel.py-api``. Each tag must be of the format {interpreter}-{abi}-{platform}. If not specified, these tags are automatically calculated.
Copy file name to clipboardExpand all lines: src/scikit_build_core/resources/scikit-build.schema.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,11 @@
106
106
"toolchain-file": {
107
107
"type": "string",
108
108
"description": "The CMAKE_TOOLCHAIN_FILE used for cross-compilation."
109
+
},
110
+
"python-hints": {
111
+
"type": "boolean",
112
+
"default": true,
113
+
"description": "Do not pass the current environment's python hints such as ``Python_EXECUTABLE``. Primarily used for cross-compilation where the CMAKE_TOOLCHAIN_FILE should handle it instead."
0 commit comments