diff mupdf-source/thirdparty/zxing-cpp/wrappers/ios/README.md @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mupdf-source/thirdparty/zxing-cpp/wrappers/ios/README.md	Mon Sep 15 11:43:07 2025 +0200
@@ -0,0 +1,25 @@
+# ZXingCpp iOS Framework
+
+## Installation
+
+### SwiftPM
+
+As this repository provides a `Package.swift` on the root level, so you can add `zxing-cpp` including wrapper code by adding a Package Dependency in Xcode.
+
+An alternative way is to check this repository out and add it as a local Swift Package by adding it as a dependency to your app.
+
+### CocoaPods
+
+You can also use [CocoaPods](https://cocoapods.org/pods/zxing-cpp). Just add the Pod as a dependency:
+
+```
+pod 'zxing-cpp'
+```
+The module to be imported is named `ZXingCpp`. If you just need the core without the wrapper code, you can use:
+```
+pod 'zxing-cpp/Core'
+```
+
+## Usage
+
+For general usage of the ObjectiveC/Swift wrapper, please have a look at the source code provided in the [demo project](demo).