Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 426 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 426 Bytes

Cherver

A toy http server library. Tested on Debian 11.

Prerequisites

  • cmake > 3.15
  • C++ compiler with C++11 support

Building and installing

  1. Use cmake to configure and build.
mkdir build
cd build
cmake ../src
cmake --build .
  1. Use cmake to install the library.
cmake --install . --prefix "{{pwd}}/shared"

Usage

See example directory for how to use the built library.