2025-12-17 16:18:36 +01:00

36 lines
1.3 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: "WebIdAutoIdProductPlugin",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdAutoIdProductPlugin", targets: ["WebIdAutoIdProductPluginWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
],
targets: [
.binaryTarget(
name: "WebIdAutoIdProductPlugin",
url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdAutoIdProductPlugin/201.1.5/WebIdAutoIdProductPlugin.framework-v201.1.5-SNAPSHOT-1576.zip",
checksum: "4ce2bbc1f867294aabfb2f52c9b1b699e6df2f21c74e5767a8bcbe1aa18e71b1"
),
.target(
name: "WebIdAutoIdProductPluginWrapper",
dependencies: [
.target(name: "WebIdAutoIdProductPlugin"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)