2020-08-18 00:28:24 +03:00
|
|
|
// swift-tools-version:5.3
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "NvimView",
|
|
|
|
platforms: [.macOS(.v10_13)],
|
|
|
|
products: [
|
2020-08-18 18:09:02 +03:00
|
|
|
.library(name: "NvimView", targets: ["NvimView"]),
|
2020-08-18 00:28:24 +03:00
|
|
|
],
|
|
|
|
dependencies: [
|
2020-08-18 18:09:02 +03:00
|
|
|
.package(name: "MessagePack", url: "https://github.com/a2/MessagePack.swift", .upToNextMinor(from: "4.0.0")),
|
|
|
|
.package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMinor(from: "5.1.1")),
|
2020-08-18 19:14:43 +03:00
|
|
|
.package(name: "NvimServerTypes", url: "https://github.com/qvacua/neovim", .exact("0.1.0-types")),
|
2020-08-18 20:37:39 +03:00
|
|
|
.package(name: "RxPack", path: "../RxPack"),
|
2020-08-19 00:07:22 +03:00
|
|
|
.package(name: "Commons", path: "../Commons"),
|
2020-08-19 01:09:13 +03:00
|
|
|
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
|
2020-08-18 00:28:24 +03:00
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "NvimView",
|
2020-08-19 00:07:22 +03:00
|
|
|
dependencies: ["RxSwift", "NvimServerTypes", "RxPack", "MessagePack", "Commons"],
|
2020-08-18 18:43:52 +03:00
|
|
|
// com.qvacua.NvimView.vim is copied by the download NvimServer script.
|
|
|
|
exclude: ["com.qvacua.NvimView.vim"],
|
2020-08-18 08:39:03 +03:00
|
|
|
resources: [
|
|
|
|
.copy("runtime"),
|
|
|
|
.copy("NvimServer"),
|
2020-08-18 18:09:02 +03:00
|
|
|
]
|
|
|
|
),
|
2020-08-18 00:28:24 +03:00
|
|
|
.testTarget(
|
|
|
|
name: "NvimViewTests",
|
2020-08-19 01:09:13 +03:00
|
|
|
dependencies: ["NvimView", "Nimble"]
|
2020-08-18 18:09:02 +03:00
|
|
|
),
|
2020-08-18 00:28:24 +03:00
|
|
|
]
|
|
|
|
)
|