From ff94a1d3dad58eb0312af36cabcff18b2ae94477 Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Sat, 7 Oct 2017 20:11:36 +0200 Subject: [PATCH] Bugfix: Fix OpenCV dependencies. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2098282..1030215 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ find_package(Boost REQUIRED COMPONENTS system) add_executable(fmri ${fmri_SRC}) # Add libraries to link -target_link_libraries(fmri ${OpenCV_libs}) +target_link_libraries(fmri ${OpenCV_LIBS}) target_link_libraries(fmri ${Boost_LIBRARIES}) # These do not have CMake support, so link manually target_link_libraries(fmri caffe glog)