-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathPackage.swift
More file actions
41 lines (39 loc) · 1.19 KB
/
Package.swift
File metadata and controls
41 lines (39 loc) · 1.19 KB
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
40
41
// 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),
.macOS(.v14),
.visionOS(.v1),
.tvOS(.v17)
],
products: [
.library(
name: "SwiftNEW",
targets: ["SwiftNEW"]),
],
dependencies: [
.package(url: "https://github.com/1998code/SwiftVBKit.git", .upToNextMinor(from: "1.4.0")),
.package(url: "https://github.com/omaralbeik/Drops.git", .upToNextMinor(from: "1.7.0")),
.package(url: "https://github.com/1998code/SwiftGlass.git", .upToNextMinor(from: "26.0.1"))
],
targets: [
.target(
name: "SwiftNEW",
dependencies: [
.product(name: "SwiftVB", package: "SwiftVBKit"),
.product(name: "Drops", package: "Drops"),
.product(name: "SwiftGlass", package: "SwiftGlass")
],
resources: [
.process("Localizable.xcstrings")
]
)
]
)