7
0
2026-05-10 20:26:20 +02:00

41 lines
1.5 KiB
Swift

// 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: "WebIdCellCheckPlugin",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdCellCheckPlugin", targets: ["WebIdCellCheckPluginWrapper"]),
],
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",
.branch("experimental")
)
],
targets: [
.binaryTarget(
name: "WebIdCellCheckPlugin",
url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdCellCheckPlugin/200.1.0/WebIdCellCheckPlugin.framework-v200.1.0-SNAPSHOT-179.zip",
checksum: "02792656947a9c0703859bdc1517310cbcfd5c6c62d1db3091b73d2c5450fb0b"
),
.target(
name: "WebIdCellCheckPluginWrapper",
dependencies: [
.target(name: "WebIdCellCheckPlugin"),
// [target dependecies here]
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)