refactor to SideStoreAppKit

This commit is contained in:
Joe Mattiello
2023-03-01 19:09:33 -05:00
parent df5b0c3af1
commit c28a45f100
92 changed files with 145 additions and 120 deletions

View File

@@ -72,6 +72,7 @@ let package = Package(
.executableTarget(
name: "SideStore",
dependencies: [
"SideStoreAppKit",
"SidePatcher",
"EmotionalDamage",
"MiniMuxerSwift",
@@ -83,7 +84,6 @@ let package = Package(
"SideKit",
"KeychainAccess",
"SemanticVersion",
// .product(name: "CrashReporter", package: "PLCrashReporter"),
.product(name: "libimobiledevice", package: "iMobileDevice.swift"),
.product(name: "Roxas", package: "Roxas"),
.product(name: "RoxasUI", package: "Roxas"),
@@ -166,6 +166,10 @@ let package = Package(
.linkedFramework("UserNotifications", .when(platforms: [.iOS, .macCatalyst])),
.linkedFramework("MobileCoreServices", .when(platforms: [.iOS, .macCatalyst])),
.linkedLibrary("AppleArchive")
],
plugins: [
.plugin(name: "IntentBuilderPlugin", package: "SwiftPMPlugins"),
.plugin(name: "LoggerPlugin", package: "SwiftPMPlugins")
]
),