Skip to content

Commit

Permalink
Merge pull request #8 from jjotaum/feature/swift-package-manager-support
Browse files Browse the repository at this point in the history
Added swift package manager support
  • Loading branch information
jjotaum authored Jul 18, 2020
2 parents 1f640bb + 846be60 commit e0c091f
Show file tree
Hide file tree
Showing 19 changed files with 115 additions and 454 deletions.
16 changes: 15 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,18 @@ UserInterfaceState.xcuserstate
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
# Pods/
# Pods/

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
Packages/
Package.pins
Package.resolved
*.xcodeproj

# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
# .swiftpm

.build/
4 changes: 2 additions & 2 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
disabled_rules: # rule identifiers to exclude from running
- trailing_whitespace
included:
- Application
- Sources
excluded: # paths to ignore during linting. Takes precedence over `included`.
- Build


Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,24 @@
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "B221DADB248D901200BE201A"
BlueprintIdentifier = "Chroma"
BuildableName = "Chroma"
BlueprintName = "Chroma"
ReferencedContainer = "container:Chroma.xcodeproj">
ReferencedContainer = "container:">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "ChromaTests"
BuildableName = "ChromaTests"
BlueprintName = "ChromaTests"
ReferencedContainer = "container:">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
Expand All @@ -28,6 +42,16 @@
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "ChromaTests"
BuildableName = "ChromaTests"
BlueprintName = "ChromaTests"
ReferencedContainer = "container:">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
Expand All @@ -40,39 +64,22 @@
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "B221DADB248D901200BE201A"
BuildableName = "Chroma"
BlueprintName = "Chroma"
ReferencedContainer = "container:Chroma.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<CommandLineArguments>
<CommandLineArgument
argument = "-o struct"
isEnabled = "YES">
</CommandLineArgument>
</CommandLineArguments>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "B221DADB248D901200BE201A"
BlueprintIdentifier = "Chroma"
BuildableName = "Chroma"
BlueprintName = "Chroma"
ReferencedContainer = "container:Chroma.xcodeproj">
ReferencedContainer = "container:">
</BuildableReference>
</BuildableProductRunnable>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
Expand Down
Loading

0 comments on commit e0c091f

Please sign in to comment.