1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-01 01:32:04 +03:00
vimr/Commons/Package.swift

23 lines
516 B
Swift
Raw Normal View History

2020-08-19 00:07:22 +03:00
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Commons",
platforms: [.macOS(.v10_13)],
2020-08-19 08:49:24 +03:00
products: [.library(name: "Commons", targets: ["Commons"])],
2020-08-19 01:04:46 +03:00
dependencies: [
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
],
2020-08-19 00:07:22 +03:00
targets: [
2020-08-19 08:49:24 +03:00
.target(name: "Commons", dependencies: []),
2020-08-19 00:07:22 +03:00
.testTarget(
name: "CommonsTests",
2020-08-19 01:42:34 +03:00
dependencies: ["Commons", "Nimble"],
resources: [
.copy("Resources")
]
2020-08-19 00:07:22 +03:00
),
]
)