From 7d96034c3dfad08e40f29e78a1bf76f1de4b5574 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 4 Apr 2017 16:20:48 +0200 Subject: [PATCH] [CCV] Added missing CMake options to include opencv Signed-off-by: Jim Martens --- ccv/sheet1/opencv/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ccv/sheet1/opencv/CMakeLists.txt b/ccv/sheet1/opencv/CMakeLists.txt index 74680c4..3388e40 100644 --- a/ccv/sheet1/opencv/CMakeLists.txt +++ b/ccv/sheet1/opencv/CMakeLists.txt @@ -1 +1,3 @@ +find_package( OpenCV REQUIRED ) add_executable(opencv opencv.cpp) +target_link_libraries( opencv ${OpenCV_LIBS} )