-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProject.swift
More file actions
47 lines (42 loc) ยท 1.38 KB
/
Project.swift
File metadata and controls
47 lines (42 loc) ยท 1.38 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
37
38
39
40
41
42
43
44
45
46
47
//
// Project.stencil.swift
// Packages
//
// Created by ๊น๋ํ on 6/16/24.
//
import ProjectDescription
import ProjectDescriptionHelpers
//let targets = CoreKit.allCases.map { core in
// return core.target
//}
//let coreKitDependencies: [TargetDependency] = targets.map { target in
// return .target(target)
//}
let coreKit: Target = .target(
name: "CoreKit",
destinations: .appDestinations,
// TODO: ํ๋ก์ ํธ์ ๋ง๋ product๋ก ๋ณ๊ฒฝํด์ผ ํจ
product: TuistRelease.isRelease ? .staticFramework : .framework,
bundleId: .moduleBundleId(name: "CoreKit"),
deploymentTargets: .appMinimunTarget,
infoPlist: .file(path: .relativeToRoot("Projects/App/Resources/Pokit-info.plist")),
sources: ["Sources/**"],
resources: ["Resources/**"],
dependencies: [
.project(target: "Util", path: .relativeToRoot("Projects/Util")),
.project(target: "SharedThirdPartyLib", path: .relativeToRoot("Projects/SharedThirdPartyLib")),
.external(name: "Moya"),
.external(name: "GoogleSignIn"),
.external(name: "SwiftJWT"),
.external(name: "SwiftSoup"),
.external(name: "KakaoSDKCommon"),
.external(name: "KakaoSDKShare"),
.external(name: "KakaoSDKTemplate"),
.external(name: "AmplitudeSwift"),
],
settings: .settings()
)
let project = Project(
name: "CoreKit",
targets: [coreKit]
)