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