Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.01 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.01 KB

Network-Learn

license lines windows linux
A cross-platform network learning demos(toys). And I try not to use 3rd-party libraries.
Welcome to try it out and leave your comments.

Name Description
TinyWebServer A tiny Http/Https web server

Build

Use cmake to build your project.
Require C++17 support and OpenSSL.

  • Install OpenSSL 1.1.

    • Windows(run in PowerShell)

      choco install openssl
    • MacOS

      brew install openssl@1.1
  • Configure and build

mkdir build && cd build
cmake ..
cmake --build . --config Release

Of course, you can also use IDE to config and build.