An open API service indexing awesome lists of open source software.

https://github.com/minuta18/cpp-http-server

Simple C++ HTTP Server. Currently in active dev
https://github.com/minuta18/cpp-http-server

c cpp http system-programming web

Last synced: 11 months ago
JSON representation

Simple C++ HTTP Server. Currently in active dev

Awesome Lists containing this project

README

          

# How to build

Download libraries and compiler:

```bash
sudo apt install cmake clang # For Ubuntu
sudo dnf install cmake clang # For Fedora
```

Build project:

```bash
cmake .
cmake --build .
```

To run you can use the following:

```bash
./Main
```