2025-12-16 15:03:27 +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.2.3/WebIdAutoIdProductPlugin.framework-v201.2.3-SNAPSHOT-1568.zip",
checksum: "02cba55d40670ac94472d756581990700a9fbb95670cc303a03f572a13d97cd3"
),
.target(
name: "WebIdAutoIdProductPluginWrapper",
dependencies: [
.target(name: "WebIdAutoIdProductPlugin"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)