Skip to content

Commit

Permalink
Tweak target/library names
Browse files Browse the repository at this point in the history
  • Loading branch information
wmcginty committed Oct 4, 2021
1 parent 8e4e057 commit d66a746
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 9 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 24 additions & 9 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,50 @@ let package = Package(
products: [
.library(
name: "UtiliKit",
targets: ["GeneralUtilities", "InstantiationUtilities", "TimelessDate", "VersionUtilities", "ContainerViewController", "ActiveLabel", "ObfuscationUtilities"]),
targets: ["GeneralUtilities", "Instantiation", "TimelessDate", "Versioning", "Container", "ActiveLabel", "Obfuscation"]),
.library(
name: "UtiliKitContainer",
targets: ["ContainerViewController"]),
name: "GeneralUtilities",
targets: ["GeneralUtilities"]),
.library(
name: "Instantiation",
targets: ["Instantiation"]),
.library(
name: "TimelessDate",
targets: ["TimelessDate"]),
.library(
name: "Versioning",
targets: ["Versioning"]),
.library(
name: "Container",
targets: ["Container"]),
.library(
name: "ActiveLabel",
targets: ["ActiveLabel"]),
.library(
name: "UtiliKitCore",
targets: ["InstantiationUtilities", "GeneralUtilities"]),
name: "Obfuscation",
targets: ["Obfuscation"]),
],
targets: [
.target(
name: "GeneralUtilities",
path: "Sources/UtiliKit/General"),
.target(
name: "InstantiationUtilities",
name: "Instantiation",
path: "Sources/UtiliKit/Instantiation"),
.target(
name: "TimelessDate",
path: "Sources/UtiliKit/TimelessDate"),
.target(
name: "VersionUtilities",
name: "Versioning",
path: "Sources/UtiliKit/Version"),
.target(
name: "ContainerViewController",
name: "Container",
path: "Sources/UtiliKit/Container"),
.target(
name: "ActiveLabel",
path: "Sources/UtiliKit/ActiveLabel"),
.target(
name: "ObfuscationUtilities",
name: "Obfuscation",
path: "Sources/UtiliKit/Obfuscation")
]
)
Expand Down

0 comments on commit d66a746

Please sign in to comment.