At this point I'm using my own from-source builds to supply pretty much all of the dependencies in my local builds. This is another fix for that case, which hopefully won't affect the CI case.
Setting up another Windows dev environment I was getting a frustrating bug--Boost has some kind of "auto-link" feature which causes it to try to link against a DLL which doesn't exist in my from-source builds and isn't passed as a link flag. The only way to stop this is to define BOOST_ALL_NO_LIB.
At this point I'm using my own from-source builds to supply pretty much all of the dependencies in my local builds. This is another fix for that case, which hopefully won't affect the CI case.
Setting up another Windows dev environment I was getting a frustrating bug--Boost has some kind of "auto-link" feature which causes it to try to link against a DLL which doesn't exist in my from-source builds and isn't passed as a link flag. The only way to stop this is to define
BOOST_ALL_NO_LIB
.