diff --git a/Fervor/.gitignore b/Fervor/.gitignore new file mode 100644 index 0000000..3b29812 --- /dev/null +++ b/Fervor/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ +DerivedData/ +.swiftpm/config/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc diff --git a/Fervor/Fervor.h b/Fervor/Fervor.h deleted file mode 100644 index 8ea1a06..0000000 --- a/Fervor/Fervor.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// Fervor.h -// Fervor -// -// Created by Shadowfacts on 10/29/21. -// - -#import - -//! Project version number for Fervor. -FOUNDATION_EXPORT double FervorVersionNumber; - -//! Project version string for Fervor. -FOUNDATION_EXPORT const unsigned char FervorVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import - - diff --git a/Fervor/Package.swift b/Fervor/Package.swift new file mode 100644 index 0000000..58cb5b5 --- /dev/null +++ b/Fervor/Package.swift @@ -0,0 +1,28 @@ +// swift-tools-version: 5.7 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "Fervor", + products: [ + // Products define the executables and libraries a package produces, and make them visible to other packages. + .library( + name: "Fervor", + targets: ["Fervor"]), + ], + dependencies: [ + // Dependencies declare other packages that this package depends on. + // .package(url: /* package url */, from: "1.0.0"), + ], + targets: [ + // Targets are the basic building blocks of a package. A target can define a module or a test suite. + // Targets can depend on other targets in this package, and on products in packages this package depends on. + .target( + name: "Fervor", + dependencies: []), + .testTarget( + name: "FervorTests", + dependencies: ["Fervor"]), + ] +) diff --git a/Fervor/README.md b/Fervor/README.md new file mode 100644 index 0000000..f60d0f9 --- /dev/null +++ b/Fervor/README.md @@ -0,0 +1,3 @@ +# Fervor + +A description of this package. diff --git a/Fervor/ClientRegistration.swift b/Fervor/Sources/Fervor/ClientRegistration.swift similarity index 100% rename from Fervor/ClientRegistration.swift rename to Fervor/Sources/Fervor/ClientRegistration.swift diff --git a/Fervor/Feed.swift b/Fervor/Sources/Fervor/Feed.swift similarity index 100% rename from Fervor/Feed.swift rename to Fervor/Sources/Fervor/Feed.swift diff --git a/Fervor/Fervor.swift b/Fervor/Sources/Fervor/Fervor.swift similarity index 100% rename from Fervor/Fervor.swift rename to Fervor/Sources/Fervor/Fervor.swift diff --git a/Fervor/FervorClient.swift b/Fervor/Sources/Fervor/FervorClient.swift similarity index 100% rename from Fervor/FervorClient.swift rename to Fervor/Sources/Fervor/FervorClient.swift diff --git a/Fervor/Group.swift b/Fervor/Sources/Fervor/Group.swift similarity index 100% rename from Fervor/Group.swift rename to Fervor/Sources/Fervor/Group.swift diff --git a/Fervor/Instance.swift b/Fervor/Sources/Fervor/Instance.swift similarity index 100% rename from Fervor/Instance.swift rename to Fervor/Sources/Fervor/Instance.swift diff --git a/Fervor/Item.swift b/Fervor/Sources/Fervor/Item.swift similarity index 100% rename from Fervor/Item.swift rename to Fervor/Sources/Fervor/Item.swift diff --git a/Fervor/ItemsSyncUpdate.swift b/Fervor/Sources/Fervor/ItemsSyncUpdate.swift similarity index 100% rename from Fervor/ItemsSyncUpdate.swift rename to Fervor/Sources/Fervor/ItemsSyncUpdate.swift diff --git a/Fervor/Token.swift b/Fervor/Sources/Fervor/Token.swift similarity index 100% rename from Fervor/Token.swift rename to Fervor/Sources/Fervor/Token.swift diff --git a/Fervor/URLRequest+Body.swift b/Fervor/Sources/Fervor/URLRequest+Body.swift similarity index 100% rename from Fervor/URLRequest+Body.swift rename to Fervor/Sources/Fervor/URLRequest+Body.swift diff --git a/Reader.xcodeproj/project.pbxproj b/Reader.xcodeproj/project.pbxproj index 819c93f..7b9020f 100644 --- a/Reader.xcodeproj/project.pbxproj +++ b/Reader.xcodeproj/project.pbxproj @@ -9,11 +9,7 @@ /* Begin PBXBuildFile section */ D608238D27DE729E00D7D5F9 /* ItemListType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D608238C27DE729E00D7D5F9 /* ItemListType.swift */; }; D65B18B22750469D004A9448 /* LoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18B12750469D004A9448 /* LoginViewController.swift */; }; - D65B18B4275048D9004A9448 /* ClientRegistration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18B3275048D9004A9448 /* ClientRegistration.swift */; }; D65B18B627504920004A9448 /* FervorController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18B527504920004A9448 /* FervorController.swift */; }; - D65B18B82750495D004A9448 /* FervorClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18B72750495D004A9448 /* FervorClient.swift */; }; - D65B18BA27504A21004A9448 /* URLRequest+Body.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18B927504A21004A9448 /* URLRequest+Body.swift */; }; - D65B18BC27504FE7004A9448 /* Token.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18BB27504FE7004A9448 /* Token.swift */; }; D65B18BE275051A1004A9448 /* LocalData.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18BD275051A1004A9448 /* LocalData.swift */; }; D65B18C127505348004A9448 /* HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65B18C027505348004A9448 /* HomeViewController.swift */; }; D68408E827947D0800E327D2 /* PrefsSceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68408E727947D0800E327D2 /* PrefsSceneDelegate.swift */; }; @@ -34,16 +30,7 @@ D6C68806272CD27700874C10 /* ReaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C68805272CD27700874C10 /* ReaderTests.swift */; }; D6C68810272CD27700874C10 /* ReaderUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C6880F272CD27700874C10 /* ReaderUITests.swift */; }; D6C68812272CD27700874C10 /* ReaderUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C68811272CD27700874C10 /* ReaderUITestsLaunchTests.swift */; }; - D6C68826272CD2BA00874C10 /* Fervor.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C68825272CD2BA00874C10 /* Fervor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D6C68829272CD2BA00874C10 /* Fervor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D6C68823272CD2BA00874C10 /* Fervor.framework */; }; - D6C6882A272CD2BA00874C10 /* Fervor.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = D6C68823272CD2BA00874C10 /* Fervor.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - D6C68830272CD2CF00874C10 /* Instance.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C6882F272CD2CF00874C10 /* Instance.swift */; }; - D6C68832272CD40600874C10 /* Feed.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C68831272CD40600874C10 /* Feed.swift */; }; - D6C68834272CD44900874C10 /* Fervor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C68833272CD44900874C10 /* Fervor.swift */; }; - D6C68856272CD7C600874C10 /* Item.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C68855272CD7C600874C10 /* Item.swift */; }; - D6C68858272CD8CD00874C10 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C68857272CD8CD00874C10 /* Group.swift */; }; D6E2434C278B456A0005E546 /* ItemsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E2434B278B456A0005E546 /* ItemsViewController.swift */; }; - D6E24352278B6DF90005E546 /* ItemsSyncUpdate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E24351278B6DF90005E546 /* ItemsSyncUpdate.swift */; }; D6E24357278B96E40005E546 /* Feed+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E24355278B96E40005E546 /* Feed+CoreDataClass.swift */; }; D6E24358278B96E40005E546 /* Feed+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E24356278B96E40005E546 /* Feed+CoreDataProperties.swift */; }; D6E2435D278B97240005E546 /* Item+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E24359278B97240005E546 /* Item+CoreDataClass.swift */; }; @@ -82,13 +69,6 @@ remoteGlobalIDString = D6C687E7272CD27600874C10; remoteInfo = Reader; }; - D6C68827272CD2BA00874C10 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D6C687E0272CD27600874C10 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D6C68822272CD2BA00874C10; - remoteInfo = Fervor; - }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -109,7 +89,6 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - D6C6882A272CD2BA00874C10 /* Fervor.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -119,11 +98,7 @@ /* Begin PBXFileReference section */ D608238C27DE729E00D7D5F9 /* ItemListType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ItemListType.swift; sourceTree = ""; }; D65B18B12750469D004A9448 /* LoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginViewController.swift; sourceTree = ""; }; - D65B18B3275048D9004A9448 /* ClientRegistration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ClientRegistration.swift; sourceTree = ""; }; D65B18B527504920004A9448 /* FervorController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FervorController.swift; sourceTree = ""; }; - D65B18B72750495D004A9448 /* FervorClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FervorClient.swift; sourceTree = ""; }; - D65B18B927504A21004A9448 /* URLRequest+Body.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URLRequest+Body.swift"; sourceTree = ""; }; - D65B18BB27504FE7004A9448 /* Token.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Token.swift; sourceTree = ""; }; D65B18BD275051A1004A9448 /* LocalData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocalData.swift; sourceTree = ""; }; D65B18C027505348004A9448 /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = ""; }; D68408E727947D0800E327D2 /* PrefsSceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PrefsSceneDelegate.swift; sourceTree = ""; }; @@ -139,6 +114,7 @@ D68B303F2792729A00E8B3FA /* AppSplitViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppSplitViewController.swift; sourceTree = ""; }; D68B304127932ED500E8B3FA /* UserActivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserActivities.swift; sourceTree = ""; }; D6A8A33327766C2800CCEC72 /* PersistentContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PersistentContainer.swift; sourceTree = ""; }; + D6AB5E9A285F6FE100157F2F /* Fervor */ = {isa = PBXFileReference; lastKnownFileType = wrapper; path = Fervor; sourceTree = ""; }; D6C687E8272CD27600874C10 /* Reader.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Reader.app; sourceTree = BUILT_PRODUCTS_DIR; }; D6C687EB272CD27600874C10 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; D6C687ED272CD27600874C10 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; @@ -151,15 +127,7 @@ D6C6880B272CD27700874C10 /* ReaderUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReaderUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; D6C6880F272CD27700874C10 /* ReaderUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReaderUITests.swift; sourceTree = ""; }; D6C68811272CD27700874C10 /* ReaderUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReaderUITestsLaunchTests.swift; sourceTree = ""; }; - D6C68823272CD2BA00874C10 /* Fervor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Fervor.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D6C68825272CD2BA00874C10 /* Fervor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fervor.h; sourceTree = ""; }; - D6C6882F272CD2CF00874C10 /* Instance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Instance.swift; sourceTree = ""; }; - D6C68831272CD40600874C10 /* Feed.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Feed.swift; sourceTree = ""; }; - D6C68833272CD44900874C10 /* Fervor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Fervor.swift; sourceTree = ""; }; - D6C68855272CD7C600874C10 /* Item.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Item.swift; sourceTree = ""; }; - D6C68857272CD8CD00874C10 /* Group.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Group.swift; sourceTree = ""; }; D6E2434B278B456A0005E546 /* ItemsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ItemsViewController.swift; sourceTree = ""; }; - D6E24351278B6DF90005E546 /* ItemsSyncUpdate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ItemsSyncUpdate.swift; sourceTree = ""; }; D6E24355278B96E40005E546 /* Feed+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Feed+CoreDataClass.swift"; sourceTree = ""; }; D6E24356278B96E40005E546 /* Feed+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Feed+CoreDataProperties.swift"; sourceTree = ""; }; D6E24359278B97240005E546 /* Item+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Item+CoreDataClass.swift"; sourceTree = ""; }; @@ -187,7 +155,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D6C68829272CD2BA00874C10 /* Fervor.framework in Frameworks */, D6E24371278BE1250005E546 /* HTMLEntities in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -206,13 +173,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D6C68820272CD2BA00874C10 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -289,11 +249,11 @@ D6C687DF272CD27600874C10 = { isa = PBXGroup; children = ( + D6AB5E9A285F6FE100157F2F /* Fervor */, D6C687EA272CD27600874C10 /* Reader */, D6C68804272CD27700874C10 /* ReaderTests */, D6C6880E272CD27700874C10 /* ReaderUITests */, D6840911279486C400E327D2 /* ReaderMac */, - D6C68824272CD2BA00874C10 /* Fervor */, D6C687E9272CD27600874C10 /* Products */, D68B302E278FDCE200E8B3FA /* Frameworks */, ); @@ -305,7 +265,6 @@ D6C687E8272CD27600874C10 /* Reader.app */, D6C68801272CD27700874C10 /* ReaderTests.xctest */, D6C6880B272CD27700874C10 /* ReaderUITests.xctest */, - D6C68823272CD2BA00874C10 /* Fervor.framework */, D684090D279486BF00E327D2 /* ReaderMac.bundle */, ); name = Products; @@ -355,24 +314,6 @@ path = ReaderUITests; sourceTree = ""; }; - D6C68824272CD2BA00874C10 /* Fervor */ = { - isa = PBXGroup; - children = ( - D6C68825272CD2BA00874C10 /* Fervor.h */, - D6C68833272CD44900874C10 /* Fervor.swift */, - D65B18B72750495D004A9448 /* FervorClient.swift */, - D65B18B927504A21004A9448 /* URLRequest+Body.swift */, - D65B18B3275048D9004A9448 /* ClientRegistration.swift */, - D6C68831272CD40600874C10 /* Feed.swift */, - D6C68857272CD8CD00874C10 /* Group.swift */, - D6C6882F272CD2CF00874C10 /* Instance.swift */, - D6C68855272CD7C600874C10 /* Item.swift */, - D6E24351278B6DF90005E546 /* ItemsSyncUpdate.swift */, - D65B18BB27504FE7004A9448 /* Token.swift */, - ); - path = Fervor; - sourceTree = ""; - }; D6E2434A278B455C0005E546 /* Items */ = { isa = PBXGroup; children = ( @@ -392,17 +333,6 @@ }; /* End PBXGroup section */ -/* Begin PBXHeadersBuildPhase section */ - D6C6881E272CD2BA00874C10 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D6C68826272CD2BA00874C10 /* Fervor.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - /* Begin PBXNativeTarget section */ D684090C279486BF00E327D2 /* ReaderMac */ = { isa = PBXNativeTarget; @@ -435,7 +365,6 @@ buildRules = ( ); dependencies = ( - D6C68828272CD2BA00874C10 /* PBXTargetDependency */, D6840916279487DC00E327D2 /* PBXTargetDependency */, ); name = Reader; @@ -482,24 +411,6 @@ productReference = D6C6880B272CD27700874C10 /* ReaderUITests.xctest */; productType = "com.apple.product-type.bundle.ui-testing"; }; - D6C68822272CD2BA00874C10 /* Fervor */ = { - isa = PBXNativeTarget; - buildConfigurationList = D6C6882B272CD2BA00874C10 /* Build configuration list for PBXNativeTarget "Fervor" */; - buildPhases = ( - D6C6881E272CD2BA00874C10 /* Headers */, - D6C6881F272CD2BA00874C10 /* Sources */, - D6C68820272CD2BA00874C10 /* Frameworks */, - D6C68821272CD2BA00874C10 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Fervor; - productName = Fervor; - productReference = D6C68823272CD2BA00874C10 /* Fervor.framework */; - productType = "com.apple.product-type.framework"; - }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -525,10 +436,6 @@ CreatedOnToolsVersion = 13.2; TestTargetID = D6C687E7272CD27600874C10; }; - D6C68822272CD2BA00874C10 = { - CreatedOnToolsVersion = 13.2; - LastSwiftMigration = 1320; - }; }; }; buildConfigurationList = D6C687E3272CD27600874C10 /* Build configuration list for PBXProject "Reader" */; @@ -550,7 +457,6 @@ D6C687E7272CD27600874C10 /* Reader */, D6C68800272CD27700874C10 /* ReaderTests */, D6C6880A272CD27700874C10 /* ReaderUITests */, - D6C68822272CD2BA00874C10 /* Fervor */, D684090C279486BF00E327D2 /* ReaderMac */, ); }; @@ -589,13 +495,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D6C68821272CD2BA00874C10 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ @@ -681,23 +580,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D6C6881F272CD2BA00874C10 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D65B18BC27504FE7004A9448 /* Token.swift in Sources */, - D6C68856272CD7C600874C10 /* Item.swift in Sources */, - D6C68830272CD2CF00874C10 /* Instance.swift in Sources */, - D6E24352278B6DF90005E546 /* ItemsSyncUpdate.swift in Sources */, - D6C68832272CD40600874C10 /* Feed.swift in Sources */, - D6C68858272CD8CD00874C10 /* Group.swift in Sources */, - D6C68834272CD44900874C10 /* Fervor.swift in Sources */, - D65B18BA27504A21004A9448 /* URLRequest+Body.swift in Sources */, - D65B18B82750495D004A9448 /* FervorClient.swift in Sources */, - D65B18B4275048D9004A9448 /* ClientRegistration.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ @@ -717,11 +599,6 @@ target = D6C687E7272CD27600874C10 /* Reader */; targetProxy = D6C6880C272CD27700874C10 /* PBXContainerItemProxy */; }; - D6C68828272CD2BA00874C10 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = D6C68822272CD2BA00874C10 /* Fervor */; - targetProxy = D6C68827272CD2BA00874C10 /* PBXContainerItemProxy */; - }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ @@ -1077,71 +954,6 @@ }; name = Release; }; - D6C6882C272CD2BA00874C10 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = ZPBBSK8L8B; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_KEY_NSHumanReadableCopyright = ""; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = net.shadowfacts.Fervor; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SKIP_INSTALL = YES; - SWIFT_EMIT_LOC_STRINGS = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D6C6882D272CD2BA00874C10 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = ZPBBSK8L8B; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_KEY_NSHumanReadableCopyright = ""; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = net.shadowfacts.Fervor; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SKIP_INSTALL = YES; - SWIFT_EMIT_LOC_STRINGS = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -1190,15 +1002,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D6C6882B272CD2BA00874C10 /* Build configuration list for PBXNativeTarget "Fervor" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D6C6882C272CD2BA00874C10 /* Debug */, - D6C6882D272CD2BA00874C10 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; /* End XCConfigurationList section */ /* Begin XCRemoteSwiftPackageReference section */