From c54ef78220926649e19f44aaa8394efda9320e3f Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Thu, 16 Oct 2014 00:23:39 +0400 Subject: [PATCH] fixes --- platforms/ios/build_framework.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/ios/build_framework.py b/platforms/ios/build_framework.py index 8b219826c..e28dc6d88 100755 --- a/platforms/ios/build_framework.py +++ b/platforms/ios/build_framework.py @@ -15,7 +15,7 @@ Script will create , if it's missing, and a few its subdirectories: build/ iPhoneOS-*/ [cmake-generated build tree for an iOS device target] - iPhoneSimulator/ + iPhoneSimulator-*/ [cmake-generated build tree for iOS simulator] opencv2.framework/ [the framework content] @@ -46,7 +46,7 @@ def build_opencv(srcroot, buildroot, target, arch): if arch.startswith("armv"): cmakeargs += " -DENABLE_NEON=ON" - # if cmake cache exists, just rerun cmake to update OpenCV.xproj if necessary + # if cmake cache exists, just rerun cmake to update OpenCV.xcodeproj if necessary if os.path.isfile(os.path.join(builddir, "CMakeCache.txt")): os.system("cmake %s ." % (cmakeargs,)) else: