Skip to content

Commit

Permalink
Merge pull request #14 from wiencheck/master
Browse files Browse the repository at this point in the history
Fixed SPM manifest
  • Loading branch information
ivanvorobei authored Aug 29, 2020
2 parents 26a3739 + ecc5075 commit 0a45c64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ import PackageDescription

let package = Package(
name: "SPLarkController",
platforms: [
.iOS(.v10)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "SPLarkController",
targets: ["SPLarkController"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
targets: ["SPLarkController"])
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -24,6 +23,7 @@ let package = Package(
path: "Source/SPLarkController"),
.testTarget(
name: "SPLarkTests",
dependencies: ["SPLark"]),
dependencies: [],
path: "Tests/SPLarkTests")
]
)
1 change: 0 additions & 1 deletion Tests/SPLarkTests/SPLarkTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import XCTest
@testable import SPLark

final class SPLarkTests: XCTestCase {
func testExample() {
Expand Down

0 comments on commit 0a45c64

Please sign in to comment.