-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confused about CMAKE_ARGS / SKBUILD_CMAKE_ARGS #944
Comments
The best way to set a define is to use |
Ah, thanks. That is much better than this environment variable value parsing madness. |
Closing this too early. Is there a way to pass args in general, not just defines? Say |
It has an s. |
Thanks, will try |
I don't find the docs very helpful w.r.t.
CMAKE_ARGS
/SKBUILD_CMAKE_ARGS
, so I'm grepping through the sources.I found a test that sets
SKBUILD_CMAKE_ARGS
as follows:which gets parsed as
but this looks wrong to me, cause
;
is a list separator in CMake. If you passcmake '-DFOO=BAR;-DBAR=FOO'
on the command line, CMake definesFOO
as the list["BAR", "-DBAR=FOO"]
.Further, in
scikit-build
the value ofCMAKE_ARGS
was parsed usingshlex.split
, which is necessary to support white space in cmake arguments. When I grep forshlex.split
in this code base, all I see isscikit-build-core/src/scikit_build_core/builder/builder.py
Line 112 in bfbd625
which is apparently handled separately from SKBUILD_CMAKE_ARGS?
And SKBUILD_CMAKE_ARGS does use
shlex.split
?scikit-build-core
?The text was updated successfully, but these errors were encountered: