This commit is contained in:
2026-02-10 23:59:40 -05:00
parent 33c3ebad53
commit a2d0f1de2e
10 changed files with 105 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
# RPC Call Example
## Compiling
```
conan install . --build=missing --output-folder=build -s build_type=Release
cmake -S . -B "build" -DCMAKE_TOOLCHAIN_FILE="build/conan_toolchain.cmake" -DCMAKE_BUILD_TYPE="Release"
cmake --build "./build" --config "Release"
./build/RpcCallExample
```