-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
23 lines (21 loc) · 1021 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
// swift-tools-version: 5.5
import PackageDescription
let package = Package(
name: "Uptech-iOS-Helpers",
platforms: [.iOS(.v11)],
products: [
.library(name: "FoundationUptech", targets: ["FoundationUptech"]),
.library(name: "UIKitUptech", targets: ["UIKitUptech"])
],
targets: [
.target(name: "FoundationUptech", path: "Sources/Uptech-iOS-Helpers/FoundationUptech"),
.target(name: "UIKitUptech", path: "Sources/Uptech-iOS-Helpers/UIKitUptech"),
.testTarget(name: "FoundationUptech-Test",
dependencies: ["FoundationUptech"],
path: "Tests/Uptech-iOS-Helpers-Tests/FoundationUptech"),
.testTarget(name: "UIKitUptech-Test",
dependencies: ["UIKitUptech"],
path: "Tests/Uptech-iOS-Helpers-Tests/UIKitUptech")
// .testTarget(name: "Uptech-iOS-Helpers-Tests", dependencies: ["FoundationUptech", "UIKitUptech"]),
]
)