-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
36 lines (35 loc) · 1.07 KB
/
Project.swift
File metadata and controls
36 lines (35 loc) · 1.07 KB
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
import ProjectDescription
import ProjectDescriptionHelpers
let project = Project.project(
name: BKModule.BKData.rawValue,
targets: [
Target.target(
name: BKModule.BKData.rawValue,
product: Project.product,
bundleId: "data." + Project.bundleID,
sources: .sources,
scripts: [
swiftLintScript
],
dependencies: [
.core(),
.domain(),
.external(dependency: .KakaoSDKCommon),
.external(dependency: .KakaoSDKAuth),
.external(dependency: .KakaoSDKUser),
.external(dependency: .FirebaseRemoteConfig)
]
),
Target.target(
name: "\(BKModule.BKData.rawValue)Test",
product: .unitTests,
bundleId: "datatest" + Project.bundleID,
sources: .tests,
dependencies: [
.data(),
.external(dependency: .Nimble),
.external(dependency: .Quick)
]
)
]
)