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
BREAKING CHANGE: Packages that relied on fable to provide Boost as
a transitive dependency need to add it to their project themselves:
For example, with CMake:
```cmake
find_package(Boost COMPONENTS headers filesystem REQUIRED)
target_link_libraries(${yourTarget} PUBLIC Boost::headers Boost::filesystem)
```
And with Conan:
```python
\# class ConanFile:
def requirements(self):
self.requires("boost/1.78")
```
0 commit comments