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: "WebIdUiKitComponents",
|
|
platforms: [
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
.library(name: "WebIdUiKitComponents", targets: ["WebIdUiKitComponentsWrapper"]),
|
|
],
|
|
dependencies: [
|
|
// Dependencies declare other packages that this package depends on.
|
|
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "WebIdUiKitComponents",
|
|
url: "https://api.webid-solutions.de/releases/ios/xcframework/releases/de/webid-solutions/WebIdUiKitComponents/21.0.6/WebIdUiKitComponents.framework-v21.0.6.zip",
|
|
checksum: "dbfb7f890ba4b03b1b30c4539dab666289ae601d79813b50492d2a21da0d02ff"
|
|
),
|
|
.target(
|
|
name: "WebIdUiKitComponentsWrapper",
|
|
dependencies: [
|
|
.target(name: "WebIdUiKitComponents"),
|
|
// [target dependecies here]
|
|
|
|
]
|
|
)
|
|
],
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
)
|