Skip to content

Commit 2d80a39

Browse files
committed
Copied code from fhq-server and refactored
1 parent add585d commit 2d80a39

File tree

13 files changed

+26752
-0
lines changed

13 files changed

+26752
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# wsjcpp-jsonrpc2
22
Implementation for JsonRPC 2.0
3+
4+
## Features
5+
6+
* Collect all handlers for jsonrpc20
7+
* Including system of define validators

src.wsjcpp/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,13 @@ list (APPEND WSJCPP_SOURCES "./src.wsjcpp/wsjcpp_core/wsjcpp_core.h")
2424
list (APPEND WSJCPP_SOURCES "./src.wsjcpp/wsjcpp_core/wsjcpp_resources_manager.h")
2525
list (APPEND WSJCPP_SOURCES "./src.wsjcpp/wsjcpp_core/wsjcpp_resources_manager.cpp")
2626

27+
# nlohmann/json:v3.9.1
28+
list (APPEND WSJCPP_INCLUDE_DIRS "./src.wsjcpp/nlohmann_json/")
29+
list (APPEND WSJCPP_SOURCES "./src.wsjcpp/nlohmann_json/json.hpp")
30+
31+
# wsjcpp-validators:v0.1.0
32+
list (APPEND WSJCPP_INCLUDE_DIRS "./src.wsjcpp/wsjcpp_validators/")
33+
list (APPEND WSJCPP_SOURCES "./src.wsjcpp/wsjcpp_validators/wsjcpp_validators.h")
34+
list (APPEND WSJCPP_SOURCES "./src.wsjcpp/wsjcpp_validators/wsjcpp_validators.cpp")
35+
2736

0 commit comments

Comments
 (0)