From 026a22f5b41f7fb4b5c1f80a0e50407a46a86fdb Mon Sep 17 00:00:00 2001 From: Tadas Baltrusaitis Date: Fri, 27 Apr 2018 19:06:57 +0100 Subject: [PATCH] Another missing cmake dependency. --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ecbd0aa8..0df087d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ find_package( BLAS REQUIRED ) include_directories( ${BLAS_INCLUDE_DIRS} ) LINK_DIRECTORIES(${BLAS_LIBRARY_DIRS}) -find_package( OpenCV REQUIRED ) +find_package( OpenCV 3.3 REQUIRED ) MESSAGE("OpenCV information:") MESSAGE(" OpenCV_INCLUDE_DIRS: ${OpenCV_INCLUDE_DIRS}") @@ -215,6 +215,8 @@ add_subdirectory(lib/local/LandmarkDetector) add_subdirectory(lib/local/FaceAnalyser) # Gaze estimation library add_subdirectory(lib/local/GazeAnalyser) +# Utilities library +add_subdirectory(lib/local/Utilities) # executables add_subdirectory(exe/FaceLandmarkImg) add_subdirectory(exe/FaceLandmarkVid)