From f91bcf937b0e5cce0d6cf64544336762d018dc63 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Mon, 7 Oct 2019 08:30:38 -0400 Subject: [PATCH] spdlog is a header-only library, so the exported dep isn't needed. (#19) Remove it here. This should allow downstream packages to build properly. Signed-off-by: Chris Lalancette --- rcl_logging_spdlog/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl_logging_spdlog/CMakeLists.txt b/rcl_logging_spdlog/CMakeLists.txt index 3d96eae..874b9c3 100644 --- a/rcl_logging_spdlog/CMakeLists.txt +++ b/rcl_logging_spdlog/CMakeLists.txt @@ -47,6 +47,6 @@ if(BUILD_TESTING) endif() ament_export_include_directories(include) -ament_export_dependencies(ament_cmake rcutils spdlog) +ament_export_dependencies(ament_cmake rcutils) ament_export_libraries(${PROJECT_NAME}) ament_package()