From 4b9277652bdff69f974d60becb7858271d498a97 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Mon, 3 Jun 2019 20:49:43 -0600 Subject: [PATCH] fix blas/dlib linkage issue --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+), 0 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6425988..0db109f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,6 +95,9 @@ if(IOS) else() set(OPENCV_DEPENDENCIES opencv_core opencv_highgui opencv_imgproc opencv_ml) set(BR_THIRDPARTY_LIBS ${BR_THIRDPARTY_LIBS} ${OPENCV_DEPENDENCIES}) + if(APPLE) + list(APPEND BR_THIRDPARTY_LIBS "-framework Accelerate") + endif() endif() # Find Alphanum -- libgit2 0.21.4