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/MWI-1288/de/webid-solutions/WebIdIosSdk/10.0.1/WebIdIosSdk.framework-v10.0.1-SNAPSHOT-588.zip",
|
|
checksum: "0e7a21b6726116d9e2fb3b7ba38f2c6835aa33770864f9c838d00af2264b0207"
|
|
),
|
|
.target(
|
|
name: "WebIdIosSdkWrapper",
|
|
dependencies: [
|
|
.target(name: "WebIdIosSdk"),
|
|
// [target dependecies here]
|
|
|
|
]
|
|
)
|
|
],
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
)
|