-
Notifications
You must be signed in to change notification settings - Fork 902
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
Build.sh use cmake --build to drive build system invocation #7270
Build.sh use cmake --build to drive build system invocation #7270
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7270 +/- ##
==============================================
Coverage ? 82.20%
==============================================
Files ? 100
Lines ? 16952
Branches ? 0
==============================================
Hits ? 13936
Misses ? 3016
Partials ? 0 Continue to review full report at Codecov.
|
@robertmaynard I think since this was opened well into burndown it should technically target branch-0.19 instead. Unless this is urgently needed in 0.18. |
By using `cmake --build` instead of explicitly invoking the presumed underlying build system we allow for different CMake generators to be supported.
418172f
to
2ff440f
Compare
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.
LGTM, thanks @robertmaynard
rerun tests |
@gpucibot merge |
By using
cmake --build
instead of explicitly invoking the presumed underlying build system we allow for different CMake generators to be supported.