From a1d233248d691cb8613db2ae25abb1752b0ff677 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Thu, 18 Jun 2020 16:43:58 -0600 Subject: [PATCH] Ios updates (#576) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0db7ae2..a8ce777 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,7 +83,7 @@ find_package(Qt5 COMPONENTS ${QT_DEPENDENCIES} REQUIRED) set(BR_THIRDPARTY_LIBS ${BR_THIRDPARTY_LIBS} ${Qt5Core_QTMAIN_LIBRARIES}) if(IOS) - list(APPEND BR_THIRDPARTY_LIBS "${_qt5Core_install_prefix}/lib/libqtpcre.a") + list(APPEND BR_THIRDPARTY_LIBS "${_qt5Core_install_prefix}/lib/libqtpcre2.a") endif() # Find OpenCV @@ -91,7 +91,7 @@ find_package(OpenCV 2.4.5 REQUIRED) if(IOS) file(GLOB OPENCV_IOS_LIBS "${OpenCV_DIR}/../../lib/*.a") list(APPEND BR_THIRDPARTY_LIBS ${OPENCV_IOS_LIBS}) - list(APPEND BR_THIRDPARTY_LIBS "-framework Foundation -framework UIKit -framework Security -lc++") + list(APPEND BR_THIRDPARTY_LIBS "-framework Foundation -framework UIKit -framework Security -framework MobileCoreServices -lc++") else() set(OPENCV_DEPENDENCIES opencv_core opencv_highgui opencv_imgproc opencv_ml) set(BR_THIRDPARTY_LIBS ${BR_THIRDPARTY_LIBS} ${OPENCV_DEPENDENCIES}) -- libgit2 0.21.4