Skip to content

Commit

Permalink
Humble ➡️ ROS2 (#323)
Browse files Browse the repository at this point in the history
Humble ➡️ ROS2

Signed-off-by: Michael Carroll <michael@openrobotics.org>
  • Loading branch information
mjcarroll authored Nov 1, 2022
2 parents d0ef0d6 + 6256c84 commit ab64a52
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 6 deletions.
3 changes: 3 additions & 0 deletions ros_gz/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Changelog for package ros_gz
* Merge remote-tracking branch 'origin/humble' into ahcorde/humble_to_ros2
* Contributors: Alejandro Hernández Cordero, ahcorde

0.244.8 (2022-10-28)
--------------------

0.244.7 (2022-10-12)
--------------------
* Merge branch 'ros2' into ports/galactic_to_ros2
Expand Down
3 changes: 3 additions & 0 deletions ros_gz_bridge/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Changelog for package ros_gz_bridge
* Drop fortress CI
* Contributors: Alejandro Hernández Cordero, Michael Carroll, ahcorde

0.244.8 (2022-10-28)
--------------------

0.244.7 (2022-10-12)
--------------------
* Make sure that ign\_* yaml configs work as well (`#310 <https://github.com/gazebosim/ros_gz/issues/310>`_)
Expand Down
3 changes: 3 additions & 0 deletions ros_gz_image/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Changelog for package ros1_ign_image
* Drop fortress CI
* Contributors: Alejandro Hernández Cordero, Michael Carroll, ahcorde

0.244.8 (2022-10-28)
--------------------

0.244.7 (2022-10-12)
--------------------
* Merge branch 'ros2' into ports/galactic_to_ros2
Expand Down
3 changes: 3 additions & 0 deletions ros_gz_interfaces/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Changelog for package ros_gz_interfaces
* Merge remote-tracking branch 'origin/humble' into ahcorde/humble_to_ros2
* Contributors: Alejandro Hernández Cordero, ahcorde

0.244.8 (2022-10-28)
--------------------

0.244.7 (2022-10-12)
--------------------
* Bridge between msgs::Float_V and ros_gz_interfaces/Float32Array msg types (`#306 <https://github.com/gazebosim/ros_gz/issues/306>`_)
Expand Down
3 changes: 3 additions & 0 deletions ros_gz_sim/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Changelog for package ros_gz_sim
* Drop fortress CI
* Contributors: Alejandro Hernández Cordero, Michael Carroll, ahcorde

0.244.8 (2022-10-28)
--------------------

0.244.7 (2022-10-12)
--------------------
* Fix launch substitutions for ign_args (`#309 <https://github.com/gazebosim/ros_gz/issues/309>`_)
Expand Down
21 changes: 15 additions & 6 deletions ros_gz_sim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ target_link_libraries(create
)
ament_target_dependencies(create std_msgs)

add_library(Stopwatch src/Stopwatch.cpp)
ament_target_dependencies(Stopwatch
add_library(${PROJECT_NAME} SHARED src/Stopwatch.cpp)
ament_target_dependencies(${PROJECT_NAME}
rclcpp
)

target_include_directories(Stopwatch PUBLIC
target_include_directories(${PROJECT_NAME} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
Expand All @@ -87,10 +87,20 @@ install(FILES

install(TARGETS
create
Stopwatch
DESTINATION lib/${PROJECT_NAME}
)

install(
TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin
)

ament_export_targets(${PROJECT_NAME})

ament_export_dependencies(rclcpp)

if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
Expand All @@ -111,15 +121,14 @@ if(BUILD_TESTING)
)

target_link_libraries(test_stopwatch
Stopwatch
${PROJECT_NAME}
)

install(
TARGETS test_stopwatch
DESTINATION lib/${PROJECT_NAME}
)
ament_add_gtest_test(test_stopwatch)

endif()

ament_package()
5 changes: 5 additions & 0 deletions ros_gz_sim_demos/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Changelog for package ros1_gz_sim_demos
* Drop fortress CI
* Contributors: Alejandro Hernández Cordero, Michael Carroll, ahcorde

0.244.8 (2022-10-28)
--------------------
* Fixed ros_gz_sim_demos launch files (`#319 <https://github.com/gazebosim/ros_gz/issues/319>`_) (`#320 <https://github.com/gazebosim/ros_gz/issues/320>`_)
* Contributors: Alejandro Hernández Cordero

0.244.7 (2022-10-12)
--------------------
* Merge pull request `#275 <https://github.com/gazebosim/ros_gz/issues/275>`_ (Galactic to Humble)
Expand Down

0 comments on commit ab64a52

Please sign in to comment.