mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-23 19:21:53 +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
|
||||
|
||||
let package = Package(
|
||||
name: "Commons",
|
||||
platforms: [.macOS(.v10_15)],
|
||||
platforms: [.macOS(.v13)],
|
||||
products: [
|
||||
.library(name: "Commons", targets: ["Commons", "CommonsObjC"]),
|
||||
],
|
||||
|
@ -1,10 +1,10 @@
|
||||
// swift-tools-version:5.6
|
||||
// swift-tools-version:5.7
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "Ignore",
|
||||
platforms: [.macOS(.v10_15)],
|
||||
platforms: [.macOS(.v13)],
|
||||
products: [
|
||||
.library(name: "Ignore", targets: ["Ignore"]),
|
||||
],
|
||||
|
@ -1,10 +1,10 @@
|
||||
// swift-tools-version:5.6
|
||||
// swift-tools-version:5.7
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "NvimView",
|
||||
platforms: [.macOS(.v10_15)],
|
||||
platforms: [.macOS(.v13)],
|
||||
products: [
|
||||
.library(name: "NvimView", targets: ["NvimView"]),
|
||||
],
|
||||
|
@ -93,7 +93,8 @@ final class UiBridge {
|
||||
} else {
|
||||
// We know that NvimServer is there.
|
||||
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
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// swift-tools-version: 5.6
|
||||
// swift-tools-version: 5.7
|
||||
|
||||
import PackageDescription
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
// swift-tools-version:5.6
|
||||
// swift-tools-version:5.7
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "Tabs",
|
||||
platforms: [.macOS(.v10_15)],
|
||||
platforms: [.macOS(.v13)],
|
||||
products: [
|
||||
.library(name: "Tabs", targets: ["Tabs"]),
|
||||
],
|
||||
|
@ -1,10 +1,10 @@
|
||||
// swift-tools-version:5.6
|
||||
// swift-tools-version:5.7
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "Workspace",
|
||||
platforms: [.macOS(.v10_15)],
|
||||
platforms: [.macOS(.v13)],
|
||||
products: [
|
||||
.library(name: "Workspace", targets: ["Workspace"]),
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user