36 lines
1.2 KiB
Swift
36 lines
1.2 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: "WebIdIosSdk",
|
|
platforms: [
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
.library(name: "WebIdIosSdk", targets: ["WebIdIosSdkWrapper"]),
|
|
],
|
|
dependencies: [
|
|
// Dependencies declare other packages that this package depends on.
|
|
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "WebIdIosSdk",
|
|
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdIosSdk/11.2.0/WebIdIosSdk.framework-v11.2.0-SNAPSHOT-617.zip",
|
|
checksum: "8877b9c175bbca3b2b28f570b4b8cdab4b0b82dec1fc7ef48319ba4df8d2e186"
|
|
),
|
|
.target(
|
|
name: "WebIdIosSdkWrapper",
|
|
dependencies: [
|
|
.target(name: "WebIdIosSdk"),
|
|
// [target dependecies here]
|
|
|
|
]
|
|
)
|
|
],
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
)
|