File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22Changelog for package turtlebot3_fake
33^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
5+ 2.3.3 (2025-05-29)
6+ ------------------
7+ * Deprecate ament_include_dependency usage in CMakeLists.txt, related PR(https://github.com/ROBOTIS-GIT/turtlebot3_simulations/pull/234)
8+ * Contributor: ahcorde
9+
5102.3.2 (2025-04-01)
611------------------
712* None
Original file line number Diff line number Diff line change @@ -31,20 +31,18 @@ include_directories(
3131 include
3232)
3333
34- set (dependencies
35- "geometry_msgs"
36- "nav_msgs"
37- "rclcpp"
38- "sensor_msgs"
39- "tf2"
40- "tf2_msgs"
41- "turtlebot3_msgs"
42- )
43-
4434set (EXEC_NAME "turtlebot3_fake_node" )
4535
4636add_executable (${EXEC_NAME} src/turtlebot3_fake_node.cpp )
47- ament_target_dependencies (${EXEC_NAME} ${dependencies} )
37+ target_link_libraries (${EXEC_NAME}
38+ ${geometry_msgs_TARGETS}
39+ ${nav_msgs_TARGETS}
40+ rclcpp::rclcpp
41+ ${sensor_msgs_TARGETS}
42+ tf2::tf2
43+ ${tf2_msgs_TARGETS}
44+ ${turtlebot3_msgs_TARGETS}
45+ )
4846
4947################################################################################
5048# Install
@@ -65,11 +63,13 @@ install(DIRECTORY include/
6563# Macro for ament package
6664################################################################################
6765ament_export_include_directories (include )
68- ament_export_dependencies (geometry_msgs )
69- ament_export_dependencies (nav_msgs )
70- ament_export_dependencies (rclcpp )
71- ament_export_dependencies (sensor_msgs )
72- ament_export_dependencies (tf2 )
73- ament_export_dependencies (tf2_msgs )
74- ament_export_dependencies (turtlebot3_msgs )
66+ ament_export_dependencies (
67+ geometry_msgs
68+ nav_msgs
69+ rclcpp
70+ sensor_msgs
71+ tf2
72+ tf2_msgs
73+ turtlebot3_msgs
74+ )
7575ament_package ()
Original file line number Diff line number Diff line change 22<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 3" >
44 <name >turtlebot3_fake_node</name >
5- <version >2.3.2 </version >
5+ <version >2.3.3 </version >
66 <description >
77 Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
88 You can do simple tests using this package on rviz without real robots.
Original file line number Diff line number Diff line change 22Changelog for package turtlebot3_gazebo
33^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
5+ 2.3.3 (2025-05-29)
6+ ------------------
7+ * Deprecate ament_include_dependency usage in CMakeLists.txt, related PR(https://github.com/ROBOTIS-GIT/turtlebot3_simulations/pull/234)
8+ * Contributor: ahcorde
9+
5102.3.2 (2025-04-01)
611------------------
712* Added a plugin to Turtlebot3 House
Original file line number Diff line number Diff line change @@ -39,18 +39,16 @@ include_directories(
3939 ${GAZEBO_INCLUDE_DIRS}
4040)
4141
42- set (dependencies
43- "geometry_msgs"
44- "nav_msgs"
45- "rclcpp"
46- "sensor_msgs"
47- "tf2"
48- )
49-
5042set (EXEC_NAME "turtlebot3_drive" )
5143
5244add_executable (${EXEC_NAME} src/turtlebot3_drive.cpp )
53- ament_target_dependencies (${EXEC_NAME} ${dependencies} )
45+ target_link_libraries (${EXEC_NAME}
46+ ${geometry_msgs_TARGETS}
47+ ${nav_msgs_TARGETS}
48+ ${sensor_msgs_TARGETS}
49+ rclcpp::rclcpp
50+ tf2::tf2
51+ )
5452
5553# add_library(traffic_light_plugin SHARED src/traffic_light_plugin.cpp)
5654# target_link_libraries(traffic_light_plugin ${GAZEBO_LIBRARIES})
@@ -86,10 +84,12 @@ install(DIRECTORY include/
8684# Macro for ament package
8785################################################################################
8886ament_export_include_directories (include )
89- ament_export_dependencies (gazebo_ros_pkgs )
90- ament_export_dependencies (geometry_msgs )
91- ament_export_dependencies (nav_msgs )
92- ament_export_dependencies (rclcpp )
93- ament_export_dependencies (sensor_msgs )
94- ament_export_dependencies (tf2 )
87+ ament_export_dependencies (
88+ gazebo_ros_pkgs
89+ geometry_msgs
90+ nav_msgs
91+ rclcpp
92+ sensor_msgs
93+ tf2
94+ )
9595ament_package ()
Original file line number Diff line number Diff line change 22<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 3" >
44 <name >turtlebot3_gazebo</name >
5- <version >2.3.2 </version >
5+ <version >2.3.3 </version >
66 <description >
77 Gazebo simulation package for the TurtleBot3
88 </description >
Original file line number Diff line number Diff line change 22Changelog for package turtlebot3_simulations
33^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
5+ 2.3.3 (2025-05-29)
6+ ------------------
7+ * Deprecate ament_include_dependency usage in CMakeLists.txt, related PR(https://github.com/ROBOTIS-GIT/turtlebot3_simulations/pull/234)
8+ * Contributor: ahcorde
9+
5102.3.2 (2025-04-01)
611------------------
712* Added a plugin to Turtlebot3 House
Original file line number Diff line number Diff line change 22<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 3" >
44 <name >turtlebot3_simulations</name >
5- <version >2.3.2 </version >
5+ <version >2.3.3 </version >
66 <description >
77 ROS 2 packages for TurtleBot3 simulations
88 </description >
You can’t perform that action at this time.
0 commit comments