-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
33 lines (31 loc) · 1.99 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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(name: "DcaltUI",
platforms: [.macOS(.v13), .iOS(.v16), .watchOS(.v9)],
products: [
.library(name: "DcaltUI",
targets: ["DcaltUI"]),
],
dependencies: [
.package(url: "https://github.com/openalloc/SwiftCompactor", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.4"),
.package(url: "https://github.com/open-trackers/TrackerUI.git", from: "1.0.0"),
.package(url: "https://github.com/open-trackers/DcaltLib.git", from: "1.0.0"),
.package(url: "https://github.com/openalloc/SwiftNumberPad.git", from: "1.0.0"),
.package(url: "https://github.com/openalloc/SwiftTextFieldPreset.git", from: "1.0.0"),
],
targets: [
.target(name: "DcaltUI",
dependencies: [
.product(name: "TrackerUI", package: "TrackerUI"),
.product(name: "DcaltLib", package: "DcaltLib"),
.product(name: "Compactor", package: "SwiftCompactor"),
.product(name: "Collections", package: "swift-collections"),
.product(name: "NumberPad", package: "SwiftNumberPad"),
.product(name: "TextFieldPreset", package: "SwiftTextFieldPreset"),
],
path: "Sources"),
.testTarget(name: "DcaltUITests",
dependencies: ["DcaltUI"],
path: "Tests"),
])