From d7c679acea1c3fb136c5fdeccdfb6646a2ad755e Mon Sep 17 00:00:00 2001 From: Keyur Patel Date: Thu, 5 Apr 2018 12:52:46 -0600 Subject: [PATCH] fix opencv linking error --- app/br-gui/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/br-gui/CMakeLists.txt b/app/br-gui/CMakeLists.txt index 757bdd6..76a7cff 100644 --- a/app/br-gui/CMakeLists.txt +++ b/app/br-gui/CMakeLists.txt @@ -1,5 +1,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable(br-gui WIN32 br-gui.cpp ${BR_RESOURCES}) qt5_use_modules(br-gui ${QT_DEPENDENCIES}) -target_link_libraries(br-gui openbr ${BR_THIRDPARTY_LIBS}) +target_link_libraries(br-gui openbr ${BR_THIRDPARTY_LIBS} opencv_core) install(TARGETS br-gui RUNTIME DESTINATION bin) -- libgit2 0.21.4