In Visual Studio 2017, I'm able to build and run C++ project that includes Boost v1.69.0 as pre-build binaries for VS.
However, now I want to distribute release copy of my project that includes all the necessary .dll
&.lib
files. How to make sure that all Boost .dll
&.lib
files are included with final release ?
Below is the list of Boost libraries being used in my project:
#include <boost/log/core.hpp>
#include <boost/log/trivial.hpp>
#include <boost/log/expressions.hpp>
#include <boost/log/sinks/text_file_backend.hpp>
#include <boost/log/utility/setup/file.hpp>
#include <boost/log/utility/setup/common_attributes.hpp>
#include <boost/log/sources/severity_logger.hpp>
#include <boost/log/sources/record_ostream.hpp>