Skip to content

Commit

Permalink
fixed clang tidy error and removed unnecessary dependencies in CMakeL…
Browse files Browse the repository at this point in the history
…ists.txt

Signed-off-by: ito-san <fumihito.ito@tier4.jp>
  • Loading branch information
ito-san committed May 31, 2022
1 parent 877e7d6 commit adce7ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions system/bluetooth_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ find_package(Boost REQUIRED COMPONENTS
)

## Specify libraries to link a library or executable target against
target_link_libraries(bluetooth_monitor_lib bluetooth ${Boost_LIBRARIES})
target_link_libraries(l2ping_service bluetooth ${Boost_LIBRARIES})
target_link_libraries(bluetooth_monitor_lib ${Boost_LIBRARIES})
target_link_libraries(l2ping_service ${Boost_LIBRARIES})

rclcpp_components_register_node(bluetooth_monitor_lib
PLUGIN "BluetoothMonitor"
Expand Down
3 changes: 1 addition & 2 deletions system/bluetooth_monitor/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@

<build_depend>autoware_cmake</build_depend>

<depend>bluez</depend>
<depend>diagnostic_msgs</depend>
<depend>diagnostic_updater</depend>
<depend>fmt</depend>
<depend>libbluetooth-dev</depend>
<depend>libboost-dev</depend>
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>

Expand Down

0 comments on commit adce7ae

Please sign in to comment.