Skip to content

Commit

Permalink
Define product in Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
JanGorman committed Nov 30, 2017
1 parent e2773c9 commit 78c04b5
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@ import PackageDescription

let package = Package(
name: "Table",
products: [
.library(name: "Table",targets: ["Table"])
],
dependencies: [],
targets: [
.target(
name: "Table",
dependencies: [],
path: "Sources"),
.testTarget(
name: "TableTests",
dependencies: ["Table"],
path: "Tests")
.target(name: "Table", dependencies: [], path: "Sources"),
.testTarget(name: "TableTests", dependencies: ["Table"], path: "Tests")
]
)

0 comments on commit 78c04b5

Please sign in to comment.