forked from tuist/Rosalind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
29 lines (28 loc) · 824 Bytes
/
Project.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
import ProjectDescription
let project = Project(
name: "Rosalind",
targets: [
.target(
name: "Rosalind",
destinations: .macOS,
product: .framework,
bundleId: "io.tuist.Rosalind",
sources: ["Sources/Rosalind/**"],
dependencies: [
.external(name: "Path"),
.external(name: "FileSystem"),
.external(name: "Command"),
]
),
.target(
name: "RosalindTests",
destinations: .macOS,
product: .unitTests,
bundleId: "io.tuist.RosalindTests",
infoPlist: .default,
sources: ["Tests/RosalindTests/**"],
resources: [],
dependencies: [.target(name: "Rosalind")]
),
]
)