Henry Schreiner
Henry Schreiner
You can do `--config-settings=cmake.define.SOME_OPTION=ON` to pass `-DSOME_OPTION=ON`. You can also pass arbitrary CMake args via `cmake.args`. You should be able to select a preset with those args as well -...
What do you mean by "directly"? I'm not sure how it can be more "direct". The next version of Pip will support `-Ccmake.define.SOME_OPTION=ON`, which will be quite a bit nicer...
That would then be an option to Pip instead of us?
The best I could properly do would be `-CD.SOME_OPTION`, which is different enough (`CD.`) that I didn't think it was worth the shortcut, and TOML version makes more sense: ```toml...
PEP 517 handles all configuration though the config-settings object that's passed to the build hook. You can't just pass arbitrary things around - and it never worked very well with...
> this compiler does not support Arm64 Pretty sure that means you are dead in the water for cross-compiling to ARM with GCC. Sounds to me like they haven't implemented...
What version of GCC?
cibuildwheels sets `ARCHFLAGS`. Scikit-build-core picks those up and sets `CMAKE_OSX_ARCHITECTURES` (CMake define) based on `ARCHFLAGS`.
I've been reluctant to add shortcuts for something that you can already set. The only one I've added was `cmake.verbose`, but parallel is very similar to that, and likely commonly...
That might be a bug fixed in #166. Or it could be related, since this bug might have been masking an issue activating Ninja. Also, if you are turning off...