Skip to content

Commit

Permalink
Add geometry_msgs dependency to tf2_py
Browse files Browse the repository at this point in the history
Signed-off-by: vinnamkim <vinnam.kim@gmail.com>
  • Loading branch information
vinnamkim committed Aug 12, 2019
1 parent 91a645b commit 127138d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tf2_py/CMakeLists.txt
Expand Up @@ -12,6 +12,7 @@ endif()

find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(tf2 REQUIRED)

find_package(python_cmake_module REQUIRED)
Expand Down Expand Up @@ -47,8 +48,9 @@ if(WIN32)
endif()

ament_target_dependencies(${PROJECT_NAME}
"PythonExtra"
"geometry_msgs"
"tf2"
"PythonExtra"
)

install(TARGETS
Expand Down
5 changes: 4 additions & 1 deletion tf2_py/package.xml
Expand Up @@ -23,10 +23,13 @@
<buildtool_depend>ament_cmake</buildtool_depend>
<buildtool_depend>python_cmake_module</buildtool_depend>

<build_depend>geometry_msgs</build_depend>

<depend>tf2</depend>

<exec_depend>rclpy</exec_depend>
<exec_depend>builtin_interfaces</exec_depend>
<exec_depend>geometry_msgs</exec_depend>
<exec_depend>rclpy</exec_depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_cmake_pytest</test_depend>
Expand Down

0 comments on commit 127138d

Please sign in to comment.