fixes
authorIlya Lavrenov <ilya.lavrenov@itseez.com>
Wed, 15 Oct 2014 20:23:39 +0000 (00:23 +0400)
committerIlya Lavrenov <ilya.lavrenov@itseez.com>
Thu, 16 Oct 2014 05:55:22 +0000 (09:55 +0400)
platforms/ios/build_framework.py

index 8b21982..e28dc6d 100755 (executable)
@@ -15,7 +15,7 @@ Script will create <outputdir>, 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: