-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPackage.swift
36 lines (34 loc) · 939 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
31
32
33
34
35
36
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
//
// Created by Ming on 11/6/2022.
//
import PackageDescription
let package = Package(
name: "SwiftNEW",
defaultLocalization: "en",
platforms: [
.iOS(.v15),
.watchOS(.v8),
.macOS(.v12),
.custom("xros", versionString: "1.0")
],
products: [
.library(
name: "SwiftNEW",
targets: ["SwiftNEW"]),
],
dependencies: [
.package(name: "SwiftVB", url: "https://github.com/1998code/SwiftVBKit.git", .upToNextMinor(from: "1.4.0")),
.package(name: "Drops", url: "https://github.com/omaralbeik/Drops.git", .upToNextMinor(from: "1.7.0"))
],
targets: [
.target(
name: "SwiftNEW",
dependencies: [
"SwiftVB",
"Drops"
]
)
]
)