Merge pull request #316 from TouchInstinct/fix/spm_dependencies

fix: dependencies of core libraries
This commit is contained in:
Nikita Semenov 2022-07-28 13:49:42 +03:00 committed by GitHub
commit 6eefc607e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -49,12 +49,12 @@ let package = Package(
targets: [
// MARK: - UIKit
.target(name: "TIUIKitCore", path: "TIUIKitCore/Sources"),
.target(name: "TIUIKitCore", dependencies: ["TISwiftUtils"], path: "TIUIKitCore/Sources"),
.target(name: "TIUIElements", dependencies: ["TIUIKitCore", "TISwiftUtils"], path: "TIUIElements/Sources"),
// MARK: - SwiftUI
.target(name: "TISwiftUICore", path: "TISwiftUICore/Sources"),
.target(name: "TISwiftUICore", dependencies: ["TIUIKitCore", "TISwiftUtils"], path: "TISwiftUICore/Sources"),
// MARK: - Utils
.target(name: "TISwiftUtils", path: "TISwiftUtils/Sources"),