Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnbasrai/asio-tutorial
Using Boost ASIO with modern C++
https://github.com/johnbasrai/asio-tutorial
asio boost cmake conan modern-cpp
Last synced: 4 days ago
JSON representation
Using Boost ASIO with modern C++
- Host: GitHub
- URL: https://github.com/johnbasrai/asio-tutorial
- Owner: JohnBasrai
- License: bsl-1.0
- Created: 2023-01-01T00:17:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T05:33:09.000Z (over 1 year ago)
- Last Synced: 2024-10-31T20:07:23.970Z (about 2 months ago)
- Topics: asio, boost, cmake, conan, modern-cpp
- Language: C++
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asio-tutorial
Using Boost Asio with modern C++. A brief high level introduction to boost asio.## Building
Using image `ubuntu:latest` from github (See `.github/workflows/cmake.yml`)```
$ sudo apt-get install -y cmake pip && pip install 'conan<2.0'
$ mkdir -p build && cd build && conan install ..
$ cmake ..
$ make -j4
```