From 4d8ddd449cb9b1bcdb7af624fde42e1c96180fd9 Mon Sep 17 00:00:00 2001 From: Robert Haschke Date: Wed, 27 Nov 2024 14:20:44 +0100 Subject: [PATCH] Declare missing include dependency for a test --- test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f4ca9c7a..8078111b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -7,6 +7,7 @@ configure_file(resources/config.h.in "${CMAKE_CURRENT_BINARY_DIR}/resources/conf include_directories(${CMAKE_CURRENT_BINARY_DIR}) ament_add_gtest(test_basics test_basics.cpp) +target_link_libraries(test_basics ${PROJECT_NAME}) ament_target_dependencies(test_basics Eigen3) ament_add_gtest(test_point_inclusion test_point_inclusion.cpp)