Bruno Alano
Bruno Alano

Reputation: 643

How I use only Asio of Boost Library?

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

Answers (2)

Damon
Damon

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

Xeo
Xeo

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.

Upvotes: 5

Related Questions