Skip to content

Commit 44f7289

Browse files
committed
Make the library static
1 parent bf895fe commit 44f7289

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: Package.swift

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@ let package = Package(
1717
// Products define the executables and libraries a package produces, making them visible to other packages.
1818
.library(
1919
name: "MeshingKit",
20+
type: .static,
2021
targets: ["MeshingKit"]),
2122
],
2223
targets: [
2324
// Targets are the basic building blocks of a package, defining a module or a test suite.
2425
// Targets can depend on other targets in this package and products from dependencies.
2526
.target(
26-
name: "MeshingKit"),
27-
27+
name: "MeshingKit",
28+
resources: [
29+
.process("Resources/gradient.jpg")
30+
]),
2831
]
29-
)
32+
)

0 commit comments

Comments
 (0)