1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-08-17 04:30:30 +03:00
vimr/NvimView/Package.swift
2024-04-26 14:27:46 +02:00

40 lines
1.2 KiB
Swift

// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "NvimView",
platforms: [.macOS(.v12)],
products: [
.library(name: "NvimView", targets: ["NvimView"]),
],
dependencies: [
.package(name: "RxPack", path: "../RxPack"),
.package(url: "https://github.com/a2/MessagePack.swift", from: "4.0.0"),
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.6.0"),
.package(url: "https://github.com/Quick/Nimble", from: "13.3.0"),
.package(name: "Commons", path: "../Commons"),
.package(name: "Tabs", path: "../Tabs"),
],
targets: [
.target(
name: "NvimView",
dependencies: [
.product(name: "RxSwift", package: "RxSwift"),
.product(name: "RxPack", package: "RxPack"),
"Tabs",
.product(name: "RxNeovim", package: "RxPack"),
.product(name: "MessagePack", package: "MessagePack.swift"),
"Commons",
],
// com.qvacua.NvimView.vim is copied by the build NvimServer script.
exclude: ["Resources/com.qvacua.NvimView.vim"],
resources: [
.copy("Resources/runtime"),
.copy("Resources/NvimServer"),
]
),
.testTarget(name: "NvimViewTests", dependencies: ["NvimView", "Nimble"]),
]
)