Reputation: 7591
I apologize, but this question sounds silly to even to me, but maybe it will help someone else also, so I am asking it:
I downloaded & installed the Windows Pre-Built libraries for Booste 1.67 (MSVC 14.1 x64). https://dl.bintray.com/boostorg/release/1.67.0/binaries/
But when I look in the folder for ./lib-msvc-14.1/ I do not see a DLL or .lib for ASIO.
Is it included in a different .dll?
Upvotes: 1
Views: 1484
Reputation: 5547
This is because Boost.Asio is a header-only library:
By default, Boost.Asio is a header-only library.
(But parts of Boost.Asio depend on other Boost libraries that must be compiled)
Upvotes: 2