mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
bump package min os
This commit is contained in:
parent
151d66be12
commit
b5adab050d
@ -1,10 +1,10 @@
|
|||||||
// swift-tools-version:5.6
|
// swift-tools-version:5.7
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "Commons",
|
name: "Commons",
|
||||||
platforms: [.macOS(.v10_15)],
|
platforms: [.macOS(.v13)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "Commons", targets: ["Commons", "CommonsObjC"]),
|
.library(name: "Commons", targets: ["Commons", "CommonsObjC"]),
|
||||||
],
|
],
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
// swift-tools-version:5.6
|
// swift-tools-version:5.7
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "Ignore",
|
name: "Ignore",
|
||||||
platforms: [.macOS(.v10_15)],
|
platforms: [.macOS(.v13)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "Ignore", targets: ["Ignore"]),
|
.library(name: "Ignore", targets: ["Ignore"]),
|
||||||
],
|
],
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
// swift-tools-version:5.6
|
// swift-tools-version:5.7
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "NvimView",
|
name: "NvimView",
|
||||||
platforms: [.macOS(.v10_15)],
|
platforms: [.macOS(.v13)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "NvimView", targets: ["NvimView"]),
|
.library(name: "NvimView", targets: ["NvimView"]),
|
||||||
],
|
],
|
||||||
|
@ -93,7 +93,8 @@ final class UiBridge {
|
|||||||
} else {
|
} else {
|
||||||
// We know that NvimServer is there.
|
// We know that NvimServer is there.
|
||||||
env["VIMRUNTIME"] = Bundle.module.url(forResource: "runtime", withExtension: nil)!.path
|
env["VIMRUNTIME"] = Bundle.module.url(forResource: "runtime", withExtension: nil)!.path
|
||||||
process.launchPath = Bundle.module.url(forResource: "NvimServer", withExtension: nil)!.path
|
let launchPath = Bundle.module.url(forResource: "NvimServer", withExtension: nil)!.path
|
||||||
|
process.launchPath = launchPath
|
||||||
}
|
}
|
||||||
process.environment = env
|
process.environment = env
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// swift-tools-version: 5.6
|
// swift-tools-version: 5.7
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
// swift-tools-version:5.6
|
// swift-tools-version:5.7
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "Tabs",
|
name: "Tabs",
|
||||||
platforms: [.macOS(.v10_15)],
|
platforms: [.macOS(.v13)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "Tabs", targets: ["Tabs"]),
|
.library(name: "Tabs", targets: ["Tabs"]),
|
||||||
],
|
],
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
// swift-tools-version:5.6
|
// swift-tools-version:5.7
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "Workspace",
|
name: "Workspace",
|
||||||
platforms: [.macOS(.v10_15)],
|
platforms: [.macOS(.v13)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "Workspace", targets: ["Workspace"]),
|
.library(name: "Workspace", targets: ["Workspace"]),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user