Phenalor
Phenalor

Reputation: 21

MSVC13 looking for wrong library version of boost

I'm using boost 1.57 and everything is fine and dandy until the linker starts doing its magic. For some reason it's looking for libboost-*-1_56.lib instead of 1_57. Does anyone have any idea how this happens and what to do about it? I'm using msvc13.

I'm sorry if this is a very novice novice question but I've been searching for hours.

Upvotes: 1

Views: 880

Answers (1)

sehe
sehe

Reputation: 393134

Usually happens because... you're including the headers from boost 1.56

Boost has automatic linking on MSVC: http://www.boost.org/doc/libs/1_57_0/more/getting_started/windows.html#auto-linking

Upvotes: 2

Related Questions