Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dogun-anduril authored Dec 3, 2024
1 parent 8d99966 commit 94ecf77
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ See the documentation for [Lattice C++ SDK](https://docs.anduril.com/sdks/cpp).
⚠️ It's very important that the versions of lib protobuf match the version that it was compiled with as C++ requires very specific [guarantees](https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp). The current requirements are:

* `gRPC == 1.68.0`
* `Protobuf == 28.3.0`
* `Protobuf == 29.0.0`
* `CMake >= 3.16`

## Installation
Expand All @@ -24,14 +24,16 @@ you are not impacted by dependency updates of `gRPC` or `Protobuf`. The latest v
### CMakeLists.txt

```cmake
cmake_minimum_required(VERSION 3.14.0)
project(lattice-sdk-example)
# Download the SDK from github and add it as part of the project
include(FetchContent)
FetchContent_Declare(
lattice-sdk-cpp
GIT_REPOSITORY https://github.com/anduril/lattice-sdk-cpp.git
GIT_TAG v1.1.0
)
set(FETCHCONTENT_QUIET OFF)
FetchContent_MakeAvailable(lattice-sdk-cpp)
# Other build instructions
Expand All @@ -44,4 +46,3 @@ target_link_libraries(sample_app lattice-sdk-cpp)
## Support

For support with this library please [file an issue](https://github.com/anduril/lattice-sdk-cpp/issues/new) or reach out to your Anduril representative.

0 comments on commit 94ecf77

Please sign in to comment.