mirror of https://github.com/buresdv/Cork
+ Xcode 26 compatibility + Tahoe version string
This commit is contained in:
parent
6d0334ce7f
commit
b4b7bd6b88
|
|
@ -213,6 +213,7 @@ public struct AppConstants: Sendable
|
|||
|
||||
public let osVersionString: (lookupName: String, fullName: String) = {
|
||||
let versionDictionary: [Int: (lookupName: String, fullName: String)] = [
|
||||
26: ("tahoe", "Tahoe"),
|
||||
15: ("sequoia", "Sequoia"),
|
||||
14: ("sonoma", "Sonoma"),
|
||||
13: ("ventura", "Ventura"),
|
||||
|
|
|
|||
|
|
@ -106,6 +106,7 @@ let corkHelpTarget: ProjectDescription.Target = .target(
|
|||
destinations: [.mac],
|
||||
product: .bundle,
|
||||
bundleId: "eu.davidbures.corkhelp",
|
||||
deploymentTargets: .macOS("14.0.0"),
|
||||
settings: .settings(configurations: [
|
||||
.debug(
|
||||
name: "Debug",
|
||||
|
|
@ -123,6 +124,7 @@ let corkTestsTarget: ProjectDescription.Target = .target(
|
|||
destinations: [.mac],
|
||||
product: .unitTests,
|
||||
bundleId: "eu.davidbures.cork-tests",
|
||||
deploymentTargets: .macOS("14.0.0"),
|
||||
sources: [
|
||||
"Tests/**",
|
||||
"Cork/**/*.swift"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,10 @@ import ProjectDescription
|
|||
|
||||
let config: Config = .init(
|
||||
project: .tuist(
|
||||
compatibleXcodeVersions: .upToNextMajor(.init(16, 0, 0)),
|
||||
compatibleXcodeVersions: .list([
|
||||
.upToNextMajor(.init(16, 0, 0)),
|
||||
.upToNextMajor(.init(26, 0, 0))
|
||||
]),
|
||||
swiftVersion: .init(6, 0, 0),
|
||||
plugins: .init(),
|
||||
generationOptions: .options(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue