Skip to content
Snippets Groups Projects
Commit 97281eda authored by Angel Santamaria-Navarro's avatar Angel Santamaria-Navarro
Browse files

FIX: Find system opencv not ROS opencv

parent 122e1ca6
No related branches found
No related tags found
No related merge requests found
#edit the following line to add the librarie's header files
FIND_PATH(OpenCV_CONFIG OpenCVConfig.cmake /usr/local/share/OpenCV)
IF (OpenCV_CONFIG)
INCLUDE (/usr/local/share/OpenCV/OpenCVConfig.cmake)
ENDIF (OpenCV_CONFIG)
\ No newline at end of file
...@@ -199,7 +199,8 @@ SET(headers_alg_anms ...@@ -199,7 +199,8 @@ SET(headers_alg_anms
# locate the necessary dependencies # locate the necessary dependencies
FIND_PACKAGE(Eigen3 REQUIRED) FIND_PACKAGE(Eigen3 REQUIRED)
FIND_PACKAGE(OpenCV REQUIRED) #FIND_PACKAGE(OpenCV REQUIRED)
INCLUDE (${PROJECT_SOURCE_DIR}/cmake_modules/FindOpenCV.cmake)
#FIND_PACKAGE(Boost REQUIRED) #FIND_PACKAGE(Boost REQUIRED)
if (OpenCV_FOUND) if (OpenCV_FOUND)
......
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