No description
- C++ 97.5%
- CMake 2.5%
| example | ||
| include/mrest | ||
| src | ||
| .clang-format | ||
| .clangd | ||
| .gitignore | ||
| CMakeLists.txt | ||
| LICENSE | ||
| README.md | ||
Mrest
A C++26 web framework
Usage
FetchContent
set(USE_EXAMPLE OFF CACHE BOOL "Disable example project mrest" FORCE)
FetchContent_Declare(
MREST
GIT_REPOSITORY https://codeberg.org/Makian/mrest.git
GIT_TAG <TAG("master"/"vX.Y.Z")>
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(MREST)
target_link_libraries(Program PRIVATE MREST)
target_include_directories(Program PRIVATE ${MREST_SOURCE_DIR}/../include)
Manual
git clone https://codeberg.org/Makian/mrest.git
cd mrest
cmake -B build .
cd build
make
# Use the built files from the build directory
FaQ
Which compiler can i use?
Any compiler which supports the reflection proposal and the surrounding ones
Which platforms are supported?
Any platform which has a conforming compiler and socket functionality.