-
Notifications
You must be signed in to change notification settings - Fork 156
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
Add Bazel support for geometry-central #171
base: master
Are you sure you want to change the base?
Conversation
….0, and C++20 is enabled by default
Verified that this builds and runs successfully on at least Ubuntu (x86_64) and Mac OS (ARM). |
Thanks for submitting this! I'm totally unfamiliar with Bazel, but it seems to be fairly widely used so it'd be nice to support. One question: what is the maintenance requirement going forward to ensure this library continues to build well on Bazel? I'm quite wary of leaving behind stale/broken versions of the library on the long tail of various package repositories / build systems. Does it just mean updating the |
Also what is the |
Great suggestion, I added a The
|
Just a reminder that this is ready to go in. |
This PR adds support for Bazel, as an alternative to CMake (https://bazel.build/about/why)
To build:
bazel build ...
To run all unit tests:
bazel test ...
Next steps (after this is merged):
building.md
to document the one-liner required to pull this into any other Bazel-based project (which will look something likebazel_dep(name = "geometry_central", version = "0.2.0")
)