Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump msgs and transport version in Harmonic #316

Merged
merged 2 commits into from
Feb 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ci/packages.apt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
libgz-cmake3-dev
libgz-common5-dev
libgz-math7-dev
libgz-msgs9-dev
libgz-msgs10-dev
libgz-rendering8-dev
libgz-tools2-dev
libgz-transport12-dev
libgz-transport13-dev
libsdformat13-dev
xvfb
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ set(GZ_COMMON_VER ${gz-common5_VERSION_MAJOR})

#--------------------------------------
# Find gz-transport
gz_find_package(gz-transport12 REQUIRED)
set(GZ_TRANSPORT_VER ${gz-transport12_VERSION_MAJOR})
gz_find_package(gz-transport13 REQUIRED)
set(GZ_TRANSPORT_VER ${gz-transport13_VERSION_MAJOR})

#--------------------------------------
# Find gz-rendering
Expand All @@ -84,8 +84,8 @@ endif()

#--------------------------------------
# Find gz-msgs
gz_find_package(gz-msgs9 REQUIRED VERSION 9.3)
set(GZ_MSGS_VER ${gz-msgs9_VERSION_MAJOR})
gz_find_package(gz-msgs10 REQUIRED)
set(GZ_MSGS_VER ${gz-msgs10_VERSION_MAJOR})

#--------------------------------------
# Find SDFormat
Expand Down
8 changes: 4 additions & 4 deletions tutorials/thermal_camera.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,12 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(image-listener)

# Find the Gazebo Libraries used directly by the example
find_package(gz-msgs9 REQUIRED)
find_package(gz-transport12 REQUIRED)
find_package(gz-msgs10 REQUIRED)
find_package(gz-transport13 REQUIRED)

add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PUBLIC gz-msgs9 gz-transport12)
target_include_directories(${PROJECT_NAME} PUBLIC ${gz_msgs9_INCLUDE_DIRS})
target_link_libraries(${PROJECT_NAME} PUBLIC gz-msgs10 gz-transport13)
target_include_directories(${PROJECT_NAME} PUBLIC ${gz_msgs10_INCLUDE_DIRS})
```

Although most of the code above is described in the comments, let's go over the key points again:
Expand Down