Skip to content

Commit 021ac0a

Browse files
authored
fix: add missing fmt dependency (#74)
Signed-off-by: wep21 <[email protected]>
1 parent 994e887 commit 021ac0a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

autoware_utils_debug/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ ament_auto_add_library(${PROJECT_NAME} SHARED
88
"src/time_keeper.cpp"
99
)
1010

11+
target_link_libraries(${PROJECT_NAME}
12+
fmt::fmt
13+
)
14+
1115
if(BUILD_TESTING)
1216
file(GLOB_RECURSE test_files test/*.cpp)
1317
ament_add_ros_isolated_gtest(test_${PROJECT_NAME} ${test_files})

autoware_utils_debug/package.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<depend>autoware_internal_msgs</depend>
1919
<depend>autoware_utils_system</depend>
2020
<depend>diagnostic_msgs</depend>
21+
<depend>fmt</depend>
2122
<depend>rclcpp</depend>
2223

2324
<test_depend>ament_cmake_ros</test_depend>

0 commit comments

Comments
 (0)