-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 1.03 KB
/
Package.swift
File metadata and controls
29 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "DynamsoftBarcodeReader",
platforms: [.iOS(.v13)],
products: [
.library(name: "DynamsoftBarcodeReader", targets: ["DynamsoftBarcodeReader"]),
],
dependencies: [
.package(url: "https://github.com/Dynamsoft/capture-vision-spm.git", from: "3.4.1200")
],
targets: [
.binaryTarget(
name: "DynamsoftBarcodeReaderBundle",
url: "https://download2.dynamsoft.com/xcframeworks/dynamsoft-barcodereader-bundle-ios-11.4.1200-xcframework.zip",
checksum: "ab7b8d18fde9444e484b088d60d5014bdd59a90e4b554ec887959874d49beb0e"
),
.target(
name: "DynamsoftBarcodeReader",
dependencies: [
"DynamsoftBarcodeReaderBundle",
.product(name: "DynamsoftCaptureVisionBundle", package: "capture-vision-spm")
]
)
]
)