Skip to content

Commit

Permalink
Preparing for Carthage
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Clark committed Nov 20, 2015
1 parent bb8380e commit d1688f2
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 1 deletion.
1 change: 1 addition & 0 deletions SwiftTweaks.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@
PRODUCT_BUNDLE_IDENTIFIER = "org.Khan-Academy.SwiftTweaks";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
};
name = Release;
};
Expand Down
99 changes: 99 additions & 0 deletions SwiftTweaks.xcodeproj/xcshareddata/xcschemes/SwiftTweaks.xcscheme
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0710"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "93A84ED01BEAE86E0022D2F3"
BuildableName = "SwiftTweaks.framework"
BlueprintName = "SwiftTweaks"
ReferencedContainer = "container:SwiftTweaks.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "93A84EDA1BEAE86E0022D2F3"
BuildableName = "SwiftTweaksTests.xctest"
BlueprintName = "SwiftTweaksTests"
ReferencedContainer = "container:SwiftTweaks.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "93A84ED01BEAE86E0022D2F3"
BuildableName = "SwiftTweaks.framework"
BlueprintName = "SwiftTweaks"
ReferencedContainer = "container:SwiftTweaks.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "93A84ED01BEAE86E0022D2F3"
BuildableName = "SwiftTweaks.framework"
BlueprintName = "SwiftTweaks"
ReferencedContainer = "container:SwiftTweaks.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "93A84ED01BEAE86E0022D2F3"
BuildableName = "SwiftTweaks.framework"
BlueprintName = "SwiftTweaks"
ReferencedContainer = "container:SwiftTweaks.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
2 changes: 1 addition & 1 deletion SwiftTweaks/TweakStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import UIKit

/// Looks up the persisted state for tweaks.
public class TweakStore {
public final class TweakStore {

/// The "tree structure" for our Tweaks UI.
private var tweakCollections: [String: TweakCollection] = [:]
Expand Down

0 comments on commit d1688f2

Please sign in to comment.