fix: dependencies of core libraries

This commit is contained in:
Nikita Semenov 2022-07-28 12:43:54 +03:00
parent 0803060787
commit b2c6f7b852
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"),