cmake: add /usr/local/lib on Apple platform

This commit is contained in:
Alexander Alekhin 2016-08-17 13:34:59 +03:00
parent 45a21555c7
commit fde4e8fed9

View File

@ -384,3 +384,7 @@ if(NOT OPENCV_FP16_DISABLE)
set(HAVE_FP16 1)
endif()
endif()
if(APPLE AND NOT CMAKE_CROSSCOMPILING AND NOT DEFINED ENV{LDFLAGS} AND EXISTS "/usr/local/lib")
link_directories("/usr/local/lib")
endif()