To install boost, I run
b2 install optimization=speed variant=debug,release
Lib file names look like
... libboost_serialization-mt.lib libboost_serialization-mt-gd.lib ...
When a project binds, I get an error
LINK: fatal error LNK1104: cannot open file 'libboost_serialization-vc140-mt-gd-1_62.lib'
This file is not specified in the project settings with any names; only the directory of this file is set. The project successfully binds if I add compiler and Boost files to the file name.
Can I make a project no need to rename Boost lib files when installing a new version of Boost?
source share