6
0

41 lines
1.5 KiB
Swift
Raw Permalink Normal View History

2024-03-20 15:08:53 +01:00
// 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: "WebIdDocumentScanner",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdDocumentScanner", targets: ["WebIdDocumentScannerWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git",
2025-04-17 12:05:04 +02:00
.exact("12.2.0")
2024-03-20 15:08:53 +01:00
)
],
targets: [
.binaryTarget(
name: "WebIdDocumentScanner",
2025-04-17 12:05:04 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdDocumentScanner/12.4.0/WebIdDocumentScanner.framework-v12.4.0.zip",
checksum: "289d914dfda7ba58af6ae686e4eb089c61783cf2874f647ef72ac5beaeb3453e"
2024-03-20 15:08:53 +01:00
),
.target(
name: "WebIdDocumentScannerWrapper",
dependencies: [
.target(name: "WebIdDocumentScanner"),
// [target dependecies here]
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)