Add README.md

This commit is contained in:
apio 2022-10-07 16:35:32 +02:00
parent b2b14ce45d
commit 67a725ff68

21
README.md Normal file
View File

@ -0,0 +1,21 @@
# webcxx
A simple web framework similar to Flask, but for C++.
## Warning
This project is in super-alpha state and should not be used in production. It's probably filled with bugs and security vulnerabilities. You have been warned.
## How to use
See [webcxx-example](https://git.cloudapio.eu/apio/webcxx-example).
## How to add webcxx into your project (with CMake)
Add this repo as a submodule.
Append the following lines into your CMakeLists.txt:
```
include(webcxx/CMakeLists.txt)
target_include_directories(<your-executable> PUBLIC ${webcxx_include})
target_link_libraries(<your-executable> PUBLIC ${webcxx_libs})
```