-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
31 lines (30 loc) · 954 Bytes
/
Project.swift
File metadata and controls
31 lines (30 loc) · 954 Bytes
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
import ProjectDescription
let project = Project(
name: "Decalcomania",
targets: [
.target(
name: "Decalcomania",
destinations: .macOS,
product: .app,
bundleId: "io.tuist.Decalcomania",
infoPlist: .default,
sources: ["Decalcomania/Sources/**"],
resources: [
"Decalcomania/Resources/**",
"Decalcomania/OCR/**",
.folderReference(path: "Decalcomania/tessdata") // 폴더 레퍼런스로 추가
],
dependencies: []
),
.target(
name: "DecalcomaniaTests",
destinations: .macOS,
product: .unitTests,
bundleId: "io.tuist.DecalcomaniaTests",
infoPlist: .default,
sources: ["Decalcomania/Tests/**"],
resources: [],
dependencies: [.target(name: "Decalcomania")]
),
]
)