You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A common pattern is to have C++ dependencies provisioned via git submodule. These dependencies can then be included via add_subdirectory, however this fails with Clarabel.cpp because Clarabel.cpp expects to be the top-level project:
This commit allows Clarabel.cpp to be consumed by other CMake projects
via a call to `add_subdirectory`:
```cmake
add_subdirectory(path/to/clarabel.cpp)
```
Other projects might have Clarabel.cpp as a git submodule, and this
makes it easier to do so.
A common pattern is to have C++ dependencies provisioned via git submodule. These dependencies can then be included via
add_subdirectory
, however this fails with Clarabel.cpp because Clarabel.cpp expects to be the top-level project:If Clarabel.cpp is not the top-level project, it will fail to build, because directories like
rust_wrapper
won't be found.The text was updated successfully, but these errors were encountered: