visual studio - error LNK1104: cannot open file 'libboost_serialization-vc110-mt-gd-1_53.lib' -
i use boost serialization create simple xml file, when debug, got error "error lnk1104: cannot open file 'libboost_serialization-vc110-mt-gd-1_53.lib'" have tried fixed problem followed answer in this question
but can't find folder "stage" in boost folder, downloaded boost here
you need build boost libraries first.
open console , go root folder of boost. type
bootstrap
and type
b2 variant=debug,release link=static runtime-link=static
for building debug , release configuration static linking. can find more information in getting started guide
Comments
Post a Comment