-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
35 lines (34 loc) · 1.12 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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "PersonaClick",
platforms: [
.iOS(.v11),
.macOS(.v10_15)
],
products: [
// PersonaClick SDK and libraries produced by a package.
.library(name: "PersonaClick",
targets: ["PersonaClick"]),
],
dependencies: [
// Dependencies declare other packages that PersonaClick depends on.
// .package(url: /* personaclick.com */, now: pod "3.6.7"),
// Copyright © 2023 PersonaClick Inc.
],
targets: [
.target(
name: "PersonaClick",
path: "PersonaClick/Classes",
exclude: ["Resources/Assets.swift"],
resources: [
.process("Resources")
],
linkerSettings: [
.linkedFramework("Foundation"),
.linkedFramework("UIKit", .when(platforms: [.iOS])),
.linkedFramework("AppKit", .when(platforms: [.macOS])),
]
)
]
)