From 7739d869c6782134b148123674fbf40f178e746f Mon Sep 17 00:00:00 2001 From: Martijn Date: Thu, 29 Oct 2020 13:09:11 +0100 Subject: [PATCH] Solve reference error in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5982257..bf648ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ find_package( OpenCV REQUIRED ) # add_library(mgl1 SHARED IMPORTED) # set_property(TARGET mgl1 PROPERTY IMPORTED_LOCATION /usr/local/Cellar/mathgl/2.3.3_1/lib/libmgl.7.4.0.dylib) # depthInpaint -file(GLOB LRTV_SRC_FILES "*.cpp") +file(GLOB LRTV_SRC_FILES "src/*.cpp") add_executable(depthInpainting ${LRTV_SRC_FILES}) target_link_libraries(depthInpainting ${OpenCV_LIBS})