mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
Boost.System is header-only:
fix #1414 * No need to link with Boost.System
This commit is contained in:
committed by
Vinnie Falco
parent
ca5a70a3cd
commit
03c2a8e54c
@ -7,6 +7,7 @@ Version 203
|
||||
* session_alloc is thread-safe
|
||||
* examples use flat_buffer
|
||||
* parse_until is not static
|
||||
* Boost.System is header-only
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
1
Jamfile
1
Jamfile
@ -96,7 +96,6 @@ project /boost/beast
|
||||
<implicit-dependency>/boost//headers
|
||||
<include>.
|
||||
<include>./test/extras/include
|
||||
<library>/boost/system//boost_system
|
||||
<library>/boost/coroutine//boost_coroutine
|
||||
<library>/boost/filesystem//boost_filesystem
|
||||
<library>static_asio
|
||||
|
@ -105,10 +105,9 @@ to your source files, like this:
|
||||
#include <boost/beast.hpp>
|
||||
```
|
||||
|
||||
To build your program successfully, you'll need to add the Boost.System
|
||||
library to link with. If you use coroutines you'll also need to link
|
||||
with the Boost.Coroutine library. Please visit the Boost documentation
|
||||
for instructions on how to do this for your particular build system.
|
||||
If you use coroutines you'll need to link with the Boost.Coroutine
|
||||
library. Please visit the Boost documentation for instructions
|
||||
on how to do this for your particular build system.
|
||||
|
||||
To build the documentation, examples, tests, and benchmarks it is
|
||||
necessary to first obtain the Boost "superproject" along with sources of
|
||||
|
Reference in New Issue
Block a user