Changed rosidl_generator_c/cpp to rosidl_runtime_c/cpp (#588)
* Changed rosidl_generator_c/cpp to rosidl_runtime_c/cpp Signed-off-by: ahcorde <ahcorde@gmail.com> * Fixed rcl rcl_runtime_c dependency Signed-off-by: ahcorde <ahcorde@gmail.com> * Fixed rcl_action rcl_runtime_c dependency Signed-off-by: ahcorde <ahcorde@gmail.com> * Fixed rcl_lifecycle rcl_runtime_c dependency Signed-off-by: ahcorde <ahcorde@gmail.com> * keep the originally used dependency type Signed-off-by: ahcorde <ahcorde@gmail.com>
This commit is contained in:
parent
730bb0ee4f
commit
08e0c715c5
6 changed files with 18 additions and 17 deletions
|
@ -4,11 +4,11 @@ project(rcl_action)
|
|||
|
||||
find_package(ament_cmake_ros REQUIRED)
|
||||
|
||||
find_package(rosidl_generator_c REQUIRED)
|
||||
find_package(action_msgs REQUIRED)
|
||||
find_package(rcl REQUIRED)
|
||||
find_package(rcutils REQUIRED)
|
||||
find_package(rmw REQUIRED)
|
||||
find_package(rosidl_runtime_c REQUIRED)
|
||||
|
||||
include_directories(
|
||||
include
|
||||
|
@ -54,7 +54,7 @@ ament_target_dependencies(${PROJECT_NAME}
|
|||
"rcl"
|
||||
"rcutils"
|
||||
"rmw"
|
||||
"rosidl_generator_c"
|
||||
"rosidl_runtime_c"
|
||||
)
|
||||
|
||||
rcl_set_symbol_visibility_hidden(${PROJECT_NAME} LANGUAGE "C")
|
||||
|
@ -205,10 +205,10 @@ endif()
|
|||
# specific order: dependents before dependencies
|
||||
ament_export_include_directories(include)
|
||||
ament_export_libraries(${PROJECT_NAME})
|
||||
ament_export_dependencies(action_msgs)
|
||||
ament_export_dependencies(ament_cmake)
|
||||
ament_export_dependencies(rcl)
|
||||
ament_export_dependencies(rcutils)
|
||||
ament_export_dependencies(rmw)
|
||||
ament_export_dependencies(action_msgs)
|
||||
ament_export_dependencies(rosidl_generator_c)
|
||||
ament_export_dependencies(rosidl_runtime_c)
|
||||
ament_package()
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<depend>rcl</depend>
|
||||
<depend>rcutils</depend>
|
||||
<depend>rmw</depend>
|
||||
<depend>rosidl_generator_c</depend>
|
||||
<depend>rosidl_runtime_c</depend>
|
||||
|
||||
<test_depend>ament_cmake_gtest</test_depend>
|
||||
<test_depend>ament_lint_common</test_depend>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue