mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
@ -6,6 +6,7 @@
|
||||
* Add flat_streambuf
|
||||
* Rename to BEAST_DOXYGEN
|
||||
* Update .gitignore for VS2017
|
||||
* Fix README.md CMake instructions
|
||||
|
||||
API Changes:
|
||||
|
||||
|
24
README.md
24
README.md
@ -1,7 +1,13 @@
|
||||
<img width="880" height = "80" alt = "Beast"
|
||||
src="https://raw.githubusercontent.com/vinniefalco/Beast/master/doc/images/readme.png">
|
||||
|
||||
[](https://gitter.im/vinniefalco/Beast?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/vinniefalco/Beast) [](https://ci.appveyor.com/project/vinniefalco/beast) [](https://codecov.io/gh/vinniefalco/Beast) [](https://coveralls.io/github/vinniefalco/Beast?branch=master) [](http://vinniefalco.github.io/beast/) [](LICENSE_1_0.txt)
|
||||
[](https://gitter.im/vinniefalco/Beast?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://travis-ci.org/vinniefalco/Beast)
|
||||
[](https://ci.appveyor.com/project/vinniefalco/beast)
|
||||
[](https://codecov.io/gh/vinniefalco/Beast)
|
||||
[](https://coveralls.io/github/vinniefalco/Beast?branch=master)
|
||||
[](http://vinniefalco.github.io/beast/)
|
||||
[](LICENSE_1_0.txt)
|
||||
|
||||
# HTTP and WebSocket built on Boost.Asio in C++11
|
||||
|
||||
@ -106,24 +112,18 @@ instructions on how to do this for your particular build system.
|
||||
|
||||
For the examples and tests, Beast provides build scripts for Boost.Build (bjam)
|
||||
and CMake. It is possible to generate Microsoft Visual Studio or Apple
|
||||
Developers using Microsoft Visual Studio can generate Visual Studio
|
||||
project files by executing these commands from the root of the repository:
|
||||
Xcode project files using CMake by executing these commands from
|
||||
the root of the repository:
|
||||
|
||||
```
|
||||
cd bin
|
||||
cmake .. # for 32-bit Windows builds
|
||||
cmake -G Xcode .. # for Apple Xcode builds
|
||||
|
||||
cd ../bin64
|
||||
cmake .. # for Linux/Mac builds, OR
|
||||
cmake -G"Visual Studio 14 2015 Win64" .. # for 64-bit Windows builds
|
||||
```
|
||||
cmake -G"Visual Studio 14 2015 Win64" .. # for 64-bit Windows builds (VS2015)
|
||||
cmake -G"Visual Studio 15 2017 Win64" .. # for 64-bit Windows builds (VS2017)
|
||||
|
||||
When using Apple Xcode it is possible to generate Xcode project files
|
||||
using these commands:
|
||||
|
||||
```
|
||||
cd bin
|
||||
cmake -G Xcode .. # for Apple Xcode builds
|
||||
```
|
||||
|
||||
To build with Boost.Build, it is necessary to have the bjam executable
|
||||
|
Reference in New Issue
Block a user