I've a suggestion to explicitly set up Boost_ARCHITECTURE variable in CMakeLists.txt
if (CMAKE_SYSTEM_PROCESSOR MATCHES "(x86)|(X86)|(amd64)|(AMD64)")
set(Boost_ARCHITECTURE "-x64")
else()
set(Boost_ARCHITECTURE "-x32")
endif()
This will allow CMake to find Boost libraries with "-x64" or "-x32" suffixes. (I've compiled both architectures and this helps me to avoid "Unable to find the requested Boost libraries" error).
I've a suggestion to explicitly set up Boost_ARCHITECTURE variable in CMakeLists.txt
This will allow CMake to find Boost libraries with "-x64" or "-x32" suffixes. (I've compiled both architectures and this helps me to avoid "Unable to find the requested Boost libraries" error).