And it is not surprising that there is no such file in ...\boost_1_58_0\stage\lib . How can I get it? I have only:
boost_1_58_0\stage\lib\libboost_filesystem-vc120-mt-s-1_58.lib boost_1_58_0\stage\lib\libboost_filesystem-vc120-s-1_58.lib
. I tried to compile boost with various options, ending with the application --build-type=complete to it (poor person solution from LNK1104 linker error with "libboost_filesystem-vc100-mt-s-1_49.lib ' ) to get:
> b2 toolset=msvc threadapi=win32 link=static runtime-link=static \ variant=release address-model=32 --with-filesystem --with-locale --with-regex \ --with-system --with-iostreams --build-type=complete
the command line proposed in the readme of the project that I import is still not happy. This is a CMake project in which I put some effort into building an MSVS solution for.
NB: my problem was resolved upon careful consideration of CMake gui:

I realized that the Debug configuration was not built and, of course, enough when I right-clicked on “Solution”> “Configuration Manager”> changed to the release version, everything was in order. However, the question remains: how can I get these libboost_filesystem-vc120-mt- sgd -1_58.lib?
source share