-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
39 lines (37 loc) · 1.7 KB
/
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
31
32
33
34
35
36
37
38
39
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "NHN Cloud SDK",
products: [
.library(
name: "NHNCloudSDK",
targets: ["NHNCloudCommon", "NHNCloudCore", "NHNCloudLogger", "NHNCloudIAP", "NHNCloudOCR", "NHNCloudPush"]),
.library(
name: "NHNCloudCore",
targets: ["NHNCloudCommon", "NHNCloudCore"]),
.library(
name: "NHNCloudLogger",
targets: ["NHNCloudCommon", "NHNCloudCore", "NHNCloudLogger", "CrashReporter"]),
.library(
name: "NHNCloudIAP",
targets: ["NHNCloudCommon", "NHNCloudCore", "NHNCloudIAP"]),
.library(
name: "NHNCloudOCR",
targets: ["NHNCloudCommon", "NHNCloudCore", "NHNCloudOCR"]),
.library(
name: "NHNCloudPush",
targets: ["NHNCloudCommon", "NHNCloudCore", "NHNCloudPush"]),
],
dependencies: [
],
targets: [
.binaryTarget(name: "NHNCloudCommon", path: "xcframeworks/NHNCloudCommon.xcframework"),
.binaryTarget(name: "NHNCloudCore", path: "xcframeworks/NHNCloudCore.xcframework"),
.binaryTarget(name: "NHNCloudLogger", path: "xcframeworks/NHNCloudLogger.xcframework"),
.binaryTarget(name: "NHNCloudIAP", path: "xcframeworks/NHNCloudIAP.xcframework"),
.binaryTarget(name: "NHNCloudOCR", path: "xcframeworks/NHNCloudOCR.xcframework"),
.binaryTarget(name: "NHNCloudPush", path: "xcframeworks/NHNCloudPush.xcframework"),
.binaryTarget(name: "CrashReporter", path: "External/CrashReporter/CrashReporter.xcframework")
]
)