1
1
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:
George Harker 2023-10-30 14:48:04 -07:00
parent 151d66be12
commit b5adab050d
7 changed files with 13 additions and 12 deletions

View File

@ -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"]),
], ],

View File

@ -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"]),
], ],

View File

@ -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"]),
], ],

View File

@ -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

View File

@ -1,4 +1,4 @@
// swift-tools-version: 5.6 // swift-tools-version: 5.7
import PackageDescription import PackageDescription

View File

@ -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"]),
], ],

View File

@ -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"]),
], ],