7
0
2026-02-06 10:55:55 +01:00

53 lines
1.9 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: "WebIdVideoIdentPlugin",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdVideoIdentPlugin", targets: ["WebIdVideoIdentPluginWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git",
.exact("21.0.2")
),
.package(
name: "AhoyKit",
url: "https://github.com/ahoyconference/ahoykit-swift",
.exact("6.1.0")
),
.package(
name: "AhoyWebRTC",
url: "https://github.com/ahoyconference/ahoywebrtc-swift.git",
.exact("1.8.0")
)
],
targets: [
.binaryTarget(
name: "WebIdVideoIdentPlugin",
url: "https://api.webid-solutions.de/releases/ios/xcframework/releases/de/webid-solutions/WebIdVideoIdentPlugin/21.1.0/WebIdVideoIdentPlugin.framework-v21.1.0.zip",
checksum: "c9ce7060e5bbf6051690ffd5b6530310d996fea1ee16f0e4861c59dc7d7dc1c3"
),
.target(
name: "WebIdVideoIdentPluginWrapper",
dependencies: [
.target(name: "WebIdVideoIdentPlugin"),
// [target dependecies here]
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
.product(name: "AhoyKit", package: "AhoyKit"),
.product(name: "AhoyWebRTC", package: "AhoyWebRTC"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)