-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPackage.swift
54 lines (53 loc) · 1.25 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "FreeCombine",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.watchOS(.v6),
.tvOS(.v13)
],
products: [
.library(
name: "FreeCombine",
targets: [
"FreeCombine"
]
),
.library(
name: "Time",
targets: [
"Time"
]
),
],
dependencies: [
.package(url: "https://github.com/CSCIX65G/swift-atomics.git", branch: "CSCIX65G/playgrounds"),
// .package(url: "https://github.com/apple/swift-atomics.git", .upToNextMajor(from: "1.0.2")),
],
targets: [
.target(
name: "FreeCombine",
dependencies: [
.product(name: "Atomics", package: "swift-atomics")
]
),
.testTarget(
name: "FreeCombineTests",
dependencies: ["FreeCombine"]
),
.target(
name: "Time",
dependencies: [
"FreeCombine"
]
),
.testTarget(
name: "TimeTests",
dependencies: [
"Time"
]
),
]
)