Skip to content

Commit

Permalink
Merge pull request #169 from kiliankoe/swiftpm-package-layout
Browse files Browse the repository at this point in the history
Move SwiftPM Manifest to Repo Root
  • Loading branch information
davedelong authored Sep 13, 2019
2 parents bf27b4b + 58a102c commit 0a15910
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions MathParser/Package.swift → Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "MathParser",
dependencies: []),
dependencies: [],
path: "MathParser/Sources/MathParser"),
.testTarget(
name: "MathParserTests",
dependencies: ["MathParser"]),
dependencies: ["MathParser"],
path: "MathParser/Tests/MathParserTests"),
]
)

0 comments on commit 0a15910

Please sign in to comment.