CMake with Boost could not find static libraries

I guess your compiled libraries is not in your BOOST_ROOT/lib/ folder. In this case, you need to set your lib folder directory path.

set(BOOST_LIBRARYDIR ${BOOST_ROOT}/stage/lib/)

or

set(BOOST_LIBRARYDIR path/to/your/lib/folder)

I have same problem

solved by using command

bjam install --prefix="<your boost install folder>" --with-system --with-date_time --with-random link=static runtime-link=shared threading=multi