-
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
Update build.sh
#445
Update build.sh
#445
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two comments, please resolve as you see fit. Approving.
build.sh
Outdated
@@ -115,6 +115,8 @@ if hasArg -v; then | |||
fi | |||
if hasArg -g; then | |||
BUILD_TYPE=Debug | |||
export SKBUILD_INSTALL_STRIP=false | |||
export SKBUILD_CMAKE_BUILD_TYPE=""Debug"" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why double double quotes?
export SKBUILD_CMAKE_BUILD_TYPE=""Debug"" | |
export SKBUILD_CMAKE_BUILD_TYPE="Debug" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wence- were the double quotes deliberate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just copied as-is from the scikit-build documentation: https://scikit-build-core.readthedocs.io/en/latest/configuration.html#configuring-cmake-arguments-and-defines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like a typo, at least other code, including in their own testing, just use SKBUILD_CMAKE_BUILD_TYPE=Debug
.
Fixed
Co-authored-by: Bradley Dice <[email protected]>
/merge |
No description provided.