Skip to content

Commit 0a15910

Browse files
authored
Merge pull request #169 from kiliankoe/swiftpm-package-layout
Move SwiftPM Manifest to Repo Root
2 parents bf27b4b + 58a102c commit 0a15910

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

MathParser/Package.swift Package.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ let package = Package(
2020
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2121
.target(
2222
name: "MathParser",
23-
dependencies: []),
23+
dependencies: [],
24+
path: "MathParser/Sources/MathParser"),
2425
.testTarget(
2526
name: "MathParserTests",
26-
dependencies: ["MathParser"]),
27+
dependencies: ["MathParser"],
28+
path: "MathParser/Tests/MathParserTests"),
2729
]
2830
)

0 commit comments

Comments
 (0)