Hello,
I just tried to build my C++ project again today
with this on my CMake:
Include(FetchContent)
set(FETCHCONTENT_QUIET TRUE)
FetchContent_Declare(Boost
GIT_REPOSITORY https://github.com/boostorg/boost.git
GIT_TAG master # Boost 1.89
OVERRIDE_FIND_PACKAGE
GIT_PROGRESS TRUE
)
FetchContent_MakeAvailable(Boost)
and I got this:
/boost-src/libs/url/include/boost/url/grammar/charset.hpp:15:10: fatal error: boost/core/static_assert.hpp: No such file or directory
15 | #include <boost/core/static_assert.hpp>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
Does this look familiar or is t's just me ?
*If I switch the GIT_TAG from master to --> boost-1.89.0 everything builds ok...
Thank You.