Skip to content
Snippets Groups Projects
Commit 39b36bf0 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Remove indirect dependencies

parent 0b7fc4fa
No related branches found
No related tags found
2 merge requests!39release after RAL,!38After 2nd RAL submission
...@@ -261,10 +261,6 @@ endif() ...@@ -261,10 +261,6 @@ endif()
#Link the created libraries #Link the created libraries
#===============EXAMPLE=========================
# IF (Ceres_FOUND)
# TARGET_LINK_LIBRARIES(${PLUGIN_NAME} ${CERES_LIBRARIES})
# ENDIF(Ceres_FOUND)
TARGET_LINK_LIBRARIES(${PLUGIN_NAME} ${wolfcore_LIBRARIES}) TARGET_LINK_LIBRARIES(${PLUGIN_NAME} ${wolfcore_LIBRARIES})
......
...@@ -14,48 +14,48 @@ target_link_libraries(gtest_example ${PLUGIN_NAME}) # ...@@ -14,48 +14,48 @@ target_link_libraries(gtest_example ${PLUGIN_NAME}) #
########################################################### ###########################################################
wolf_add_gtest(gtest_processor_imu gtest_processor_imu.cpp) wolf_add_gtest(gtest_processor_imu gtest_processor_imu.cpp)
target_link_libraries(gtest_processor_imu ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_processor_imu ${PLUGIN_NAME})
wolf_add_gtest(gtest_processor_imu2d gtest_processor_imu2d.cpp) wolf_add_gtest(gtest_processor_imu2d gtest_processor_imu2d.cpp)
target_link_libraries(gtest_processor_imu2d ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_processor_imu2d ${PLUGIN_NAME})
wolf_add_gtest(gtest_imu gtest_imu.cpp) wolf_add_gtest(gtest_imu gtest_imu.cpp)
target_link_libraries(gtest_imu ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_imu ${PLUGIN_NAME})
wolf_add_gtest(gtest_imu_tools gtest_imu_tools.cpp) wolf_add_gtest(gtest_imu_tools gtest_imu_tools.cpp)
target_link_libraries(gtest_imu_tools ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_imu_tools ${PLUGIN_NAME})
wolf_add_gtest(gtest_imu2d_tools gtest_imu2d_tools.cpp) wolf_add_gtest(gtest_imu2d_tools gtest_imu2d_tools.cpp)
target_link_libraries(gtest_imu2d_tools ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_imu2d_tools ${PLUGIN_NAME})
wolf_add_gtest(gtest_processor_imu_jacobians gtest_processor_imu_jacobians.cpp) wolf_add_gtest(gtest_processor_imu_jacobians gtest_processor_imu_jacobians.cpp)
target_link_libraries(gtest_processor_imu_jacobians ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_processor_imu_jacobians ${PLUGIN_NAME})
wolf_add_gtest(gtest_feature_imu gtest_feature_imu.cpp) wolf_add_gtest(gtest_feature_imu gtest_feature_imu.cpp)
target_link_libraries(gtest_feature_imu ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_feature_imu ${PLUGIN_NAME})
wolf_add_gtest(gtest_factor_imu2d gtest_factor_imu2d.cpp) wolf_add_gtest(gtest_factor_imu2d gtest_factor_imu2d.cpp)
target_link_libraries(gtest_factor_imu2d ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_factor_imu2d ${PLUGIN_NAME})
wolf_add_gtest(gtest_imu_static_init gtest_imu_static_init.cpp) wolf_add_gtest(gtest_imu_static_init gtest_imu_static_init.cpp)
target_link_libraries(gtest_imu_static_init ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_imu_static_init ${PLUGIN_NAME})
wolf_add_gtest(gtest_imu2d_static_init gtest_imu2d_static_init.cpp) wolf_add_gtest(gtest_imu2d_static_init gtest_imu2d_static_init.cpp)
target_link_libraries(gtest_imu2d_static_init ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_imu2d_static_init ${PLUGIN_NAME})
wolf_add_gtest(gtest_imu_mocap_fusion gtest_imu_mocap_fusion.cpp) wolf_add_gtest(gtest_imu_mocap_fusion gtest_imu_mocap_fusion.cpp)
target_link_libraries(gtest_imu_mocap_fusion ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_imu_mocap_fusion ${PLUGIN_NAME})
wolf_add_gtest(gtest_factor_compass_3d gtest_factor_compass_3d.cpp) wolf_add_gtest(gtest_factor_compass_3d gtest_factor_compass_3d.cpp)
target_link_libraries(gtest_factor_compass_3d ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_factor_compass_3d ${PLUGIN_NAME})
# Has been excluded from tests for god knows how long, so thing is broken. # Has been excluded from tests for god knows how long, so thing is broken.
# Maybe call an archeologist to fix this thing? # Maybe call an archeologist to fix this thing?
# wolf_add_gtest(gtest_factor_imu gtest_factor_imu.cpp) # wolf_add_gtest(gtest_factor_imu gtest_factor_imu.cpp)
# target_link_libraries(gtest_factor_imu ${PLUGIN_NAME} ${wolf_LIBRARY}) # target_link_libraries(gtest_factor_imu ${PLUGIN_NAME})
wolf_add_gtest(gtest_processor_motion_intrinsics_update gtest_processor_motion_intrinsics_update.cpp) wolf_add_gtest(gtest_processor_motion_intrinsics_update gtest_processor_motion_intrinsics_update.cpp)
target_link_libraries(gtest_processor_motion_intrinsics_update ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_processor_motion_intrinsics_update ${PLUGIN_NAME})
wolf_add_gtest(gtest_sensor_compass gtest_sensor_compass.cpp) wolf_add_gtest(gtest_sensor_compass gtest_sensor_compass.cpp)
target_link_libraries(gtest_sensor_compass ${PLUGIN_NAME} ${wolf_LIBRARY}) target_link_libraries(gtest_sensor_compass ${PLUGIN_NAME})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment