6
0

59 lines
2.2 KiB
Swift
Raw Permalink Normal View History

2024-03-08 09:59:40 +01:00
// 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.
2025-01-23 14:54:31 +01:00
.package(
name: "DeviceKit",
url: "https://github.com/devicekit/DeviceKit.git",
.exact("5.2.2")
),
2024-03-08 09:59:40 +01:00
.package(
name: "AhoyKit",
url: "https://github.com/ahoyconference/ahoykit-swift",
2024-09-05 12:48:14 +02:00
.exact("6.1.0")
2024-03-08 09:59:40 +01:00
),
.package(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git",
2025-04-16 13:20:05 +02:00
.exact("12.2.0")
2024-03-08 09:59:40 +01:00
),
.package(
name: "AhoyWebRTC",
url: "https://github.com/ahoyconference/ahoywebrtc-swift.git",
.exact("1.8.0")
)
],
targets: [
.binaryTarget(
name: "WebIdVideoIdentPlugin",
2025-04-18 06:14:54 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdVideoIdentPlugin/10.6.0/WebIdVideoIdentPlugin.framework-v10.6.0-SNAPSHOT-361.zip",
checksum: "79b13b433d45fbbc22057a2a1e61c3df7e338ecf45cefc19c7b4d1b2cb717704"
2024-03-08 09:59:40 +01:00
),
.target(
name: "WebIdVideoIdentPluginWrapper",
dependencies: [
.target(name: "WebIdVideoIdentPlugin"),
// [target dependecies here]
2025-01-23 14:54:31 +01:00
.product(name: "DeviceKit", package: "DeviceKit"),
2024-03-08 09:59:40 +01:00
.product(name: "AhoyKit", package: "AhoyKit"),
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
.product(name: "AhoyWebRTC", package: "AhoyWebRTC"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)