I am working on a large C++ project that relies on Boost. The project is built on a variety of platforms using CMake. On my Windows machine, I am using CMake 2.8.9, Visual Studi
In your debug output, it looks like Boost_USE_STATIC_LIBS
is unset, but yet you're looking for the static boost libs.
Try running CMake again but with -DBoost_USE_STATIC_LIBS=ON
added to the command.
In fact, your CMakeLists.txt wraps this in another variable USE_STATIC_BOOST. Setting that to ON
should have the same effect.