-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
59 lines (57 loc) · 2.26 KB
/
Package.swift
File metadata and controls
59 lines (57 loc) · 2.26 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
48
49
50
51
52
53
54
55
56
57
58
59
// swift-tools-version: 5.9
import PackageDescription
#if TUIST
import ProjectDescription
let packageSettings = PackageSettings(
productTypes: [
"Kingfisher": .staticFramework,
"HwanKit": .staticFramework,
"HwanMacros": .macro,
"ReactorKit": .staticFramework,
"RxRelay": .framework,
"RxSwift": .framework,
"RxCocoa": .framework,
"RxCocoaRuntime" : .framework,
"ReactorKitRuntime": .framework,
"FirebaseAnalytics": .staticFramework,
"FirebaseCrashlytics": .staticFramework,
"FirebaseCore": .staticFramework,
"FirebaseCoreInternal": .staticFramework,
"FirebaseInstallations": .staticFramework,
"FirebaseSessions": .staticFramework,
"GoogleAppMeasurement": .staticFramework,
"GoogleAppMeasurementIdentitySupport": .staticFramework,
"GoogleUtilities": .staticFramework,
"GoogleDataTransport": .staticFramework,
"nanopb": .staticFramework,
"PromisesObjC": .staticFramework,
"FBLPromises": .staticFramework
],
baseSettings: .settings(
base: [
"OTHER_LDFLAGS": "$(inherited) -ObjC"
],
configurations: [
.debug(name: "DEV"),
.debug(name: "TEST"),
.release(name: "STAGING"),
.release(name: "PROD"),
]
)
)
#endif
let package = Package(
name: "hwan-tuist-lab",
platforms: [.iOS(.v12)],
dependencies: [
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "8.4.0"),
.package(url: "https://github.com/hyeonghwan/hwan-kit.git", branch: "main"),
.package(url: "https://github.com/SnapKit/SnapKit.git", from: "5.6.0"),
.package(url: "https://github.com/devxoul/Then.git", from: "3.0.0"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.6.0"),
.package(url: "https://github.com/ReactorKit/ReactorKit.git", from: "3.2.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", exact: "12.4.0"),
.package(path: "Module/hwan_macro")
],
swiftLanguageVersions: [.v5]
)