mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +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
|
* session_alloc is thread-safe
|
||||||
* examples use flat_buffer
|
* examples use flat_buffer
|
||||||
* parse_until is not static
|
* 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
|
<implicit-dependency>/boost//headers
|
||||||
<include>.
|
<include>.
|
||||||
<include>./test/extras/include
|
<include>./test/extras/include
|
||||||
<library>/boost/system//boost_system
|
|
||||||
<library>/boost/coroutine//boost_coroutine
|
<library>/boost/coroutine//boost_coroutine
|
||||||
<library>/boost/filesystem//boost_filesystem
|
<library>/boost/filesystem//boost_filesystem
|
||||||
<library>static_asio
|
<library>static_asio
|
||||||
|
@ -105,10 +105,9 @@ to your source files, like this:
|
|||||||
#include <boost/beast.hpp>
|
#include <boost/beast.hpp>
|
||||||
```
|
```
|
||||||
|
|
||||||
To build your program successfully, you'll need to add the Boost.System
|
If you use coroutines you'll need to link with the Boost.Coroutine
|
||||||
library to link with. If you use coroutines you'll also need to link
|
library. Please visit the Boost documentation for instructions
|
||||||
with the Boost.Coroutine library. Please visit the Boost documentation
|
on how to do this for your particular build system.
|
||||||
for instructions on how to do this for your particular build system.
|
|
||||||
|
|
||||||
To build the documentation, examples, tests, and benchmarks it is
|
To build the documentation, examples, tests, and benchmarks it is
|
||||||
necessary to first obtain the Boost "superproject" along with sources of
|
necessary to first obtain the Boost "superproject" along with sources of
|
||||||
|
Reference in New Issue
Block a user