I have a VS2019 project, using Boost 1_73_0 and Clang. I get a linker error about a missing boost library:
1>lld-link : error : could not open 'libboost_date_time-clangw10-mt-gd-x32-1_73.lib': no such file or directory
When I "installed" boost I simply unzipped the files in to a particular location.
I see this question mentioned setting the linker path:
https://stackoverflow.com/a/13042696/997112
But my Boost directory doesn't have a <boost_path>\stage\lib
path, it only has <boost_path\libs
(I did set linker additional dependencies to this, but it didn't work)
This file does not appear to exist on my system. Am i supposed to compile Boost sources to use this library?
UPDATE: Why is this library needed? Only Boost library I am using is Interprocess.