Skip to content

Commit f9949c1

Browse files
committed
Remove explicit .dynamic library type from all products
1 parent 78c836e commit f9949c1

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ let package = Package(
365365
products: [
366366
.library(
367367
name: "OpenAttributeGraphShims",
368-
type: .dynamic,
369368
targets: [openAttributeGraphShimsTarget.name]
370369
)
371370
],
@@ -447,7 +446,7 @@ if computeCondition {
447446
openAttributeGraphCxxTarget,
448447
])
449448
package.products.append(
450-
.library(name: "OpenAttributeGraph", type: .dynamic, targets: [openAttributeGraphTarget.name, openAttributeGraphCxxTarget.name])
449+
.library(name: "OpenAttributeGraph", targets: [openAttributeGraphTarget.name, openAttributeGraphCxxTarget.name])
451450
)
452451
}
453452
openAttributeGraphShimsTarget.dependencies.append(.target(name: openAttributeGraphTarget.name))

0 commit comments

Comments
 (0)