-
Notifications
You must be signed in to change notification settings - Fork 421
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
fix: add cmake COPY_CADICAL option to allow turning off install copy #5931
base: master
Are you sure you want to change the base?
Conversation
Mathlib CI status (docs):
|
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Okay now reworked to be a cmake option ( |
Okay cadical seems back in CI |
(Well I can't help feeling that strictly speaking |
@@ -75,6 +75,7 @@ option(USE_GMP "USE_GMP" ON) | |||
# development-specific options | |||
option(CHECK_OLEAN_VERSION "Only load .olean files compiled with the current version of Lean" OFF) | |||
option(USE_LAKE "Use Lake instead of lean.mk for building core libs from language server" OFF) | |||
option(COPY_CADICAL "Install a copy of cadical" ON) |
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.
This is not a dev-specifc option, please put it below INSTALL_LICENSE
. INSTALL_CADICAL
would likely be a more appropriate name then.
Add a cmake knob to turn off installing a copy of
cadical
.This can be useful for custom builds/installs where cadical is already available in the system.
Closes: #5603