-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPackage.swift
30 lines (28 loc) · 994 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "THEOplayerSDK",
platforms: [
.iOS( .v12),
.tvOS(.v12)
],
products: [
.library(name: "THEOplayerSDK", targets: ["THEOplayerSDK"]),
.library(name: "THEOplayerGoogleCastIntegration", targets: ["THEOplayerGoogleCastIntegration"]),
.library(name: "THEOplayerGoogleIMAIntegration", targets: ["THEOplayerGoogleIMAIntegration"]),
],
targets: [
.binaryTarget(
name: "THEOplayerSDK",
path: "THEOplayerSDK-core/THEOplayerSDK.xcframework"
),
.binaryTarget(
name: "THEOplayerGoogleCastIntegration",
path: "THEOplayer-Integration-GoogleCast/THEOplayerGoogleCastIntegration.xcframework"
),
.binaryTarget(
name: "THEOplayerGoogleIMAIntegration",
path: "THEOplayer-Integration-GoogleIMA/THEOplayerGoogleIMAIntegration.xcframework"
),
]
)