I want to use ASIO library from Boost in my project. Its doc say it can be header-only if regex is not used and SSL not used. However, running bcp
for asio
pulls a very many libraies some of which are with sources so need compiling, bjam
etc.
Can I somehow use ASIO in project as only headers, without libs/source? I only need ASIO, not other part of Boost.
EDIT: ASIO want Boost.System
which has a lib to link - can this dependency not be so that I can use header only ASIO?