Skip to content

Commit

Permalink
clover: Add required OpenCV libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
sfalexrog committed Mar 31, 2020
1 parent 3811cbf commit 2bb29ff
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions clover/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")

find_package(GeographicLib REQUIRED)

find_package(OpenCV 3 REQUIRED
COMPONENTS
calib3d
imgproc
)

## System dependencies are found with CMake's conventions
# find_package(Boost REQUIRED COMPONENTS system)

Expand Down Expand Up @@ -204,6 +210,7 @@ add_dependencies(shell ${PROJECT_NAME}_generate_messages_cpp)
## Specify libraries to link a library or executable target against
target_link_libraries(${PROJECT_NAME}
${catkin_LIBRARIES}
${OpenCV_LIBRARIES}
)

#############
Expand Down

0 comments on commit 2bb29ff

Please sign in to comment.