File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ target_compile_options(${PROJECT_NAME} PRIVATE ${PROJECT_COMPILE_OPTIONS})
9090target_include_directories (${PROJECT_NAME}
9191 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} /include >
9292 $<INSTALL_INTERFACE:include /${PROJECT_NAME} >)
93- ament_target_dependencies (${PROJECT_NAME} PUBLIC
93+ target_link_libraries (${PROJECT_NAME} PUBLIC
9494 ${THIS_PACKAGE_EXPORT_DEPENDS}
9595)
9696# Private libraries that are not transitively needed by downstream projects
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
88
99ament_add_gtest(test_basics test_basics.cpp)
1010target_link_libraries (test_basics ${PROJECT_NAME} )
11- ament_target_dependencies (test_basics Eigen3)
11+ target_link_libraries (test_basics PUBLIC Eigen3)
1212
1313ament_add_gtest(test_point_inclusion test_point_inclusion.cpp)
1414target_link_libraries (test_point_inclusion ${PROJECT_NAME} )
You can’t perform that action at this time.
0 commit comments