1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-25 23:02:35 +03:00
vimr/NvimView/Package.swift
2020-09-18 23:14:20 +02:00

44 lines
1.2 KiB
Swift

// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "NvimView",
platforms: [.macOS(.v10_13)],
products: [
.library(name: "NvimView", targets: ["NvimView"]),
],
dependencies: [
.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")),
.package(
name: "NvimServerTypes",
url: "https://github.com/qvacua/neovim",
.exact("0.1.0-types")
),
.package(name: "RxPack", path: "../RxPack"),
.package(name: "Commons", path: "../Commons"),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
],
targets: [
.target(
name: "NvimView",
dependencies: ["RxSwift", "NvimServerTypes", "RxPack", "MessagePack", "Commons"],
// com.qvacua.NvimView.vim is copied by the download NvimServer script.
exclude: ["com.qvacua.NvimView.vim"],
resources: [
.copy("runtime"),
.copy("NvimServer"),
]
),
.testTarget(
name: "NvimViewTests",
dependencies: ["NvimView", "Nimble"]
),
]
)