From 1605894a504d65af9db8e6ce94060a7c38208bb5 Mon Sep 17 00:00:00 2001 From: total_newbie <34492500+Kenon-mo@users.noreply.github.com> Date: Sat, 9 Dec 2023 16:56:46 +0100 Subject: [PATCH] Fix OpenCV classifiers path --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d5e96952..24407a726 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -108,7 +108,7 @@ foreach(file ${files}) endforeach() # Move OpenCV classifiers -file(GLOB files "lib/3rdParty/OpenCV3.4/classifiers/*.xml") +file(GLOB files "lib/3rdParty/OpenCV/classifiers/*.xml") foreach(file ${files}) file(COPY ${file} DESTINATION ${CMAKE_BINARY_DIR}/bin/classifiers) install(FILES ${file} DESTINATION ${CMAKE_CONFIG_DIR}/classifiers)