webcxx/README.md

21 lines
624 B
Markdown
Raw Normal View History

2022-10-07 14:35:32 +00:00
# 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).
2022-11-04 19:11:09 +00:00
## How to add webcxx to your project (with CMake)
2022-10-07 14:35:32 +00:00
Add this repo as a submodule.
2022-11-04 19:08:43 +00:00
Append the following lines to your CMakeLists.txt:
2022-10-07 14:35:32 +00:00
```
include(webcxx/CMakeLists.txt)
target_include_directories(<your-executable> PUBLIC ${webcxx_include})
target_link_libraries(<your-executable> PUBLIC ${webcxx_libs})
```