Reputation: 643
how I use only the Asio of Boost Library without adding any other library? Is that possible?
In the Boost, don't have the folder called "lib" with the *.a files?
Upvotes: 8
Views: 6834
Reputation: 70186
Asio exists as as standalone library, entirely independent of Boost (this is the "original").
No need to search together the bits from Boost subdirectories if you don't want to use Boost, just download Asio and use that. :-)
Upvotes: 7
Reputation: 131829
Since Asio is a header-only library, there are no lib files associated with it. You can extract only the absolutly needed header files with bcp, which is included.
Asio
lib
bcp
Upvotes: 5