forked from artsy/eigen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 710 Bytes
/
Package.swift
File metadata and controls
20 lines (18 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "Eigen",
products: [
.library(name: "DangerDepsEigen", type: .dynamic, targets: ["eigen"])
],
dependencies: [
.package(url: "https://github.com/danger/swift.git", from: "1.0.0"),
.package(url: "https://github.com/jpsim/Yams", from: "1.0.0")
],
targets: [
// This is just an arbitrary Swift file in the app, that has
// no dependencies outside of Foundation, the dependencies section
// ensures that the library for Danger gets build also.
.target(name: "eigen", dependencies: ["Danger", "Yams"], path: "Artsy", sources: ["Stringify.swift"]),
]
)