-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
32 lines (31 loc) · 995 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
30
31
32
import ProjectDescription
let project = Project(
name: "PatchouliJSON",
packages: [
.package(url: "https://github.com/raymccrae/swift-jsonpatch.git", .upToNextMajor(from: "1.0.0"))
],
targets: [
.target(
name: "PatchouliJSON",
destinations: .macOS,
product: .staticLibrary,
bundleId: "io.tuist.PatchouliJSON",
sources: ["Sources/**"],
dependencies:
[
.project(target: "PatchouliCore", path: "../PatchouliCore"),
.package(product: "JSONPatch")
]
),
.target(
name: "PatchouliJSONTests",
destinations: .macOS,
product: .unitTests,
bundleId: "io.tuist.PatchouliJSONTests",
infoPlist: .default,
sources: ["Tests/Sources/**"],
resources: ["Tests/Resources/**"],
dependencies: [.target(name: "PatchouliJSON")]
),
]
)