ulatekh
ulatekh
I find this lack of documentation baffling, too. Doesn't look like there's much help here on GitHub, either. My next step is to explore the mailing lists, but that looks...
Then how are we supposed to use the new Boost CMake configuration script in a way that's backwards compatible with the old script? My CMake build-system supports a lot of...
Our CMake buildsystem allows each target to call `find_package(Boost)` with a different list of components, so I put it to you that your example is the simple case. It also...
Linking to `Boost::headers` to get the include directory doesn't seem to work in any Visual Studio build. I still need to synthesize `Boost_INCLUDE_DIR` there. It's not necessary in the MinGW/gcc...
If BoostConfig was setting `Boost_INCLUDE_DIR` and `Boost_LIBRARIES`, I wouldn't have had to embark upon this investigation in the first place. I am setting `BOOST_ROOT` in my environment variables. And I...
I'm now using the `b2 install` method, and now `find_package(Boost CONFIG)` works as advertised! I `set(Boost_INCLUDE_DIR "${Boost_INCLUDE_DIRS}")` to maintain backward compatibility, and even though `Boost_LIBRARIES` is empty, the necessary libraries...