Skip to content

Commit

Permalink
Static/dynamic library products (#168)
Browse files Browse the repository at this point in the history
Co-authored-by: David Roman <[email protected]>
Resolves #159
  • Loading branch information
krzyzanowskim authored Feb 10, 2023
1 parent d8dfc24 commit e4d9b8d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ let package = Package(
.tvOS(.v11)
],
products: [
.library(
name: "Introspect",
targets: ["Introspect"]
)
.library(name: "Introspect", targets: ["Introspect"]),
.library(name: "Introspect-Static", type: .static, targets: ["Introspect"]),
.library(name: "Introspect-Dynamic", type: .dynamic, targets: ["Introspect"]),
],
dependencies: [],
targets: [
Expand All @@ -28,4 +27,4 @@ let package = Package(
path: "IntrospectTests"
)
]
)
)

0 comments on commit e4d9b8d

Please sign in to comment.