-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update external project example to release 1.22.3.
- Loading branch information
1 parent
8e5aae1
commit 4acbbaa
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,11 +98,11 @@ include(FetchContent) | |
FetchContent_Declare( | ||
fusion_engine_client | ||
# Recommended: | ||
URL https://github.com/PointOneNav/fusion-engine-client/archive/refs/tags/v1.16.0.zip | ||
URL_HASH MD5=3d35c1c56e111d2e9a164cdbf7878228 | ||
# Alternative: | ||
URL https://github.com/PointOneNav/fusion-engine-client/archive/refs/tags/v1.22.3.zip | ||
URL_HASH MD5=cfe1de319725822a1b825cd3421fb6b1 | ||
# Alternatively: | ||
# GIT_REPOSITORY https://github.com/PointOneNav/fusion-engine-client.git | ||
# GIT_TAG v1.16.0 | ||
# GIT_TAG v1.22.3 | ||
) | ||
set(P1_FE_BUILD_EXAMPLES OFF CACHE INTERNAL "") | ||
FetchContent_MakeAvailable(fusion_engine_client) | ||
|
@@ -114,7 +114,7 @@ target_link_libraries(example_app PUBLIC fusion_engine_client) | |
``` | ||
|
||
Note that we strongly recommend using a specific version of the library in your code by specifying a release zip file or | ||
a git tag (e.g., `GIT_TAG v1.15.2`), and updating that as new versions are released. That way, you can be sure that your | ||
a git tag (e.g., `GIT_TAG vA.B.C`), and updating that as new versions are released. That way, you can be sure that your | ||
code is always built with a known version of fusion-engine-client. If you prefer, however, you can tell CMake to track | ||
the latest changes by using `GIT_TAG master` instead. | ||
|
||
|
@@ -168,12 +168,12 @@ To use this library in an existing Bazel project, add the following to your proj | |
git_repository( | ||
name = "fusion_engine_client", | ||
remote = "[email protected]:PointOneNav/fusion_engine_client.git", | ||
tag = "v1.15.2", | ||
tag = "v1.22.3", | ||
) | ||
``` | ||
|
||
Note that we strongly recommend using a specific version of the library in your code by specifying a git tag (e.g., | ||
`tag = "v1.15.2"`), and updating that as new versions are released. That way, you can be sure that your code is always | ||
`tag = "v1.22.3"`), and updating that as new versions are released. That way, you can be sure that your code is always | ||
built with a known version of fusion-engine-client. If you prefer, however, you can tell Bazel to track the latest | ||
changes by using `branch = "master"` instead. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters