mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
40 lines
1.2 KiB
Swift
40 lines
1.2 KiB
Swift
// swift-tools-version:5.7
|
|
|
|
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.0.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 download NvimServer script.
|
|
exclude: ["Resources/com.qvacua.NvimView.vim"],
|
|
resources: [
|
|
.copy("Resources/runtime"),
|
|
.copy("Resources/NvimServer"),
|
|
]
|
|
),
|
|
.testTarget(name: "NvimViewTests", dependencies: ["NvimView", "Nimble"]),
|
|
]
|
|
)
|