mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 03:05:51 +00:00
Code of new coroutine-based web server. The new server is not connected to Clio and not ready to use yet. For #919.
20 lines
503 B
CMake
20 lines
503 B
CMake
add_library(clio_web)
|
|
|
|
target_sources(
|
|
clio_web
|
|
PRIVATE Resolver.cpp
|
|
dosguard/DOSGuard.cpp
|
|
dosguard/IntervalSweepHandler.cpp
|
|
dosguard/WhitelistHandler.cpp
|
|
impl/AdminVerificationStrategy.cpp
|
|
ng/Connection.cpp
|
|
ng/impl/ConnectionHandler.cpp
|
|
ng/impl/ServerSslContext.cpp
|
|
ng/impl/WsConnection.cpp
|
|
ng/Server.cpp
|
|
ng/Request.cpp
|
|
ng/Response.cpp
|
|
)
|
|
|
|
target_link_libraries(clio_web PUBLIC clio_util)
|