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

Merge branch 'eigen_h' into 'master'

missing eigen include dir

missing eigen include dir

See merge request !94
parents 2e00d17a 5e5b5143
No related branches found
No related tags found
1 merge request!94missing eigen include dir
...@@ -68,6 +68,9 @@ ENDIF (Suitesparse_INCLUDE_DIRS) ...@@ -68,6 +68,9 @@ ENDIF (Suitesparse_INCLUDE_DIRS)
#include directories #include directories
INCLUDE_DIRECTORIES(.) INCLUDE_DIRECTORIES(.)
INCLUDE_DIRECTORIES(${EIGEN_INCLUDE_DIRS})
IF(Ceres_FOUND) IF(Ceres_FOUND)
INCLUDE_DIRECTORIES(${CERES_INCLUDE_DIRS}) INCLUDE_DIRECTORIES(${CERES_INCLUDE_DIRS})
ENDIF(Ceres_FOUND) ENDIF(Ceres_FOUND)
......
...@@ -8,12 +8,17 @@ ...@@ -8,12 +8,17 @@
ADD_EXECUTABLE(test_sh_ptr test_sh_ptr.cpp) ADD_EXECUTABLE(test_sh_ptr test_sh_ptr.cpp)
# test_processor_odom_3D IF(Ceres_FOUND)
ADD_EXECUTABLE(test_processor_odom_3D test_processor_odom_3D.cpp) # test_processor_odom_3D
TARGET_LINK_LIBRARIES(test_processor_odom_3D ${PROJECT_NAME}) ADD_EXECUTABLE(test_processor_odom_3D test_processor_odom_3D.cpp)
TARGET_LINK_LIBRARIES(test_processor_odom_3D ${PROJECT_NAME})
ADD_EXECUTABLE(test_motion_2d test_motion_2d.cpp)
TARGET_LINK_LIBRARIES(test_motion_2d ${PROJECT_NAME})
ENDIF(Ceres_FOUND)
ADD_EXECUTABLE(test_motion_2d test_motion_2d.cpp)
TARGET_LINK_LIBRARIES(test_motion_2d ${PROJECT_NAME})
# Local parametrizations classes test # Local parametrizations classes test
ADD_EXECUTABLE(test_local_param test_local_param.cpp) ADD_EXECUTABLE(test_local_param test_local_param.cpp)
...@@ -102,9 +107,16 @@ ENDIF(Suitesparse_FOUND) ...@@ -102,9 +107,16 @@ ENDIF(Suitesparse_FOUND)
#TARGET_LINK_LIBRARIES(test_analytic_odom_constraint ${PROJECT_NAME}) #TARGET_LINK_LIBRARIES(test_analytic_odom_constraint ${PROJECT_NAME})
IF(OpenCV_FOUND) IF(OpenCV_FOUND)
# Testing many things for the 3D image odometry
ADD_EXECUTABLE(test_image test_image.cpp) IF(Ceres_FOUND)
TARGET_LINK_LIBRARIES(test_image ${PROJECT_NAME}) # Testing many things for the 3D image odometry
ADD_EXECUTABLE(test_image test_image.cpp)
TARGET_LINK_LIBRARIES(test_image ${PROJECT_NAME})
# Processor Image Landmark test
ADD_EXECUTABLE(test_processor_image_landmark test_processor_image_landmark.cpp)
TARGET_LINK_LIBRARIES(test_processor_image_landmark ${PROJECT_NAME})
ENDIF(Ceres_FOUND)
# Testing opencv matching and fundamental matrix with ransac # Testing opencv matching and fundamental matrix with ransac
ADD_EXECUTABLE(test_opencv test_opencv.cpp) ADD_EXECUTABLE(test_opencv test_opencv.cpp)
...@@ -114,9 +126,7 @@ IF(OpenCV_FOUND) ...@@ -114,9 +126,7 @@ IF(OpenCV_FOUND)
ADD_EXECUTABLE(test_projection_points test_projection_points.cpp) ADD_EXECUTABLE(test_projection_points test_projection_points.cpp)
TARGET_LINK_LIBRARIES(test_projection_points ${PROJECT_NAME}) TARGET_LINK_LIBRARIES(test_projection_points ${PROJECT_NAME})
# Processor Image Landmark test
ADD_EXECUTABLE(test_processor_image_landmark test_processor_image_landmark.cpp)
TARGET_LINK_LIBRARIES(test_processor_image_landmark ${PROJECT_NAME})
# Constraint test # Constraint test
ADD_EXECUTABLE(test_constraint_AHP test_constraint_AHP.cpp) ADD_EXECUTABLE(test_constraint_AHP test_constraint_AHP.cpp)
......
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