Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jncfa committed Jul 23, 2024
1 parent 09097f6 commit 9c5fc44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM jncfa/ros2:humble-dev
FROM jncfa/ros2:jazzy-dev

# Set up auto-source of workspace for ros user
ARG WORKSPACE
RUN echo "if [ -f ${WORKSPACE}/install/setup.bash ]; then source ${WORKSPACE}/install/setup.bash; fi" >> /home/ros/.bashrc
RUN echo "if [ -f ${WORKSPACE}/install/setup.bash ]; then source ${WORKSPACE}/install/setup.bash; fi" >> /home/ros/.bashrc
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ find_package(spdlog_vendor REQUIRED)
find_package(rcl_logging_interface REQUIRED)
find_package(rcutils REQUIRED)
find_package(rclcpp REQUIRED)
find_package(rclc REQUIRED)
find_package(rcl REQUIRED)
find_package(fmt REQUIRED)

add_library(ros2_spdlog_logger src/ros2_spdlog_logger.cpp)
Expand All @@ -25,7 +25,7 @@ target_include_directories(ros2_spdlog_logger PUBLIC
ament_target_dependencies(
ros2_spdlog_logger
"rclcpp"
"rclc"
"rcl"
"spdlog_vendor"
"rcl_logging_interface"
"rcutils"
Expand Down
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<depend>spdlog_vendor</depend>
<depend>rcl_logging_interface</depend>
<depend>rcutils</depend>
<depend>rclc</depend>
<depend>rcl</depend>
<depend>rclcpp</depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_lint_common</test_depend>

Expand Down

0 comments on commit 9c5fc44

Please sign in to comment.