https://github.com/hashgraph/hedera-protobufs-cpp
https://github.com/hashgraph/hedera-protobufs-cpp
hacktoberfest
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hashgraph/hedera-protobufs-cpp
- Owner: hashgraph
- License: apache-2.0
- Created: 2022-10-11T19:49:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-07T11:20:44.000Z (over 1 year ago)
- Last Synced: 2025-01-07T12:26:34.949Z (over 1 year ago)
- Topics: hacktoberfest
- Language: CMake
- Size: 117 KB
- Stars: 4
- Watchers: 8
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Hedera C++ Protobuf API SDK
## SDK IS NOT READY FOR PRODUCTION USE. IT IS CURRENTLY STILL UNDER DEVELOPEMENT.
### Building the Protobuf API SDK
This project features CMake Presets which simplify the setup of `vcpkg` based dependencies. The below commands are typically all that is required.
```shell
# Ensure the VCPkg Submodule is initialized
git submodule update --init
# Windows (x64) Build
cmake --preset windows-x64-release
cmake --build --preset windows-x64-release
# Linux (x64) Build
cmake --preset linux-x64-release
cmake --build --preset linux-x64-release
# MacOS (Intel x64) Build
cmake --preset macos-x64-release
cmake --build --preset macos-x64-release
# MacOS (Aarch64) Build
cmake --preset macos-arm64-release
cmake --build --preset macos-arm64-release
```