-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPackage.swift
19 lines (17 loc) · 995 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(name: "LightweightObservable",
products: [
// The external product of our package is an importable
// library that has the same name as the package itself.
.library(name: "LightweightObservable",
targets: ["LightweightObservable"]),
],
targets: [
.target(name: "LightweightObservable",
path: "LightweightObservable/Sources/"),
.testTarget(name: "LightweightObservableTests",
dependencies: ["LightweightObservable"],
path: "LightweightObservable/Tests/"),
])