Commit 4b9277652bdff69f974d60becb7858271d498a97
1 parent
c64153b7
fix blas/dlib linkage issue
Showing
1 changed file
with
3 additions
and
0 deletions
CMakeLists.txt
| ... | ... | @@ -95,6 +95,9 @@ if(IOS) |
| 95 | 95 | else() |
| 96 | 96 | set(OPENCV_DEPENDENCIES opencv_core opencv_highgui opencv_imgproc opencv_ml) |
| 97 | 97 | set(BR_THIRDPARTY_LIBS ${BR_THIRDPARTY_LIBS} ${OPENCV_DEPENDENCIES}) |
| 98 | + if(APPLE) | |
| 99 | + list(APPEND BR_THIRDPARTY_LIBS "-framework Accelerate") | |
| 100 | + endif() | |
| 98 | 101 | endif() |
| 99 | 102 | |
| 100 | 103 | # Find Alphanum | ... | ... |