mirror of
https://github.com/phranck/TUIkit.git
synced 2026-06-20 09:54:37 +00:00
BREAKING CHANGE: Package name changed due to name collision with existing rensbreur/SwiftTUI package. Changes: - Rename package from SwiftTUI to TUIKit in Package.swift - Rename Sources/SwiftTUI to Sources/TUIKit - Rename Sources/SwiftTUIExample to Sources/TUIKitExample - Rename Tests/SwiftTUITests to Tests/TUIKitTests - Rename SwiftTUI.swift to TUIKit.swift - Update all imports: import SwiftTUI -> import TUIKit - Update all code references: SwiftTUI.renderToBuffer -> TUIKit.renderToBuffer - Update documentation comments - Rename swiftTUIVersion to tuiKitVersion All 181 tests passing.
37 lines
881 B
Swift
37 lines
881 B
Swift
// swift-tools-version: 6.0
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "TUIKit",
|
|
// Minimum deployment targets for Apple platforms
|
|
// Linux is automatically supported (no platform specification needed)
|
|
platforms: [
|
|
.macOS(.v10_15)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "TUIKit",
|
|
targets: ["TUIKit"]
|
|
),
|
|
.executable(
|
|
name: "TUIKitExample",
|
|
targets: ["TUIKitExample"]
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "TUIKit"
|
|
),
|
|
.executableTarget(
|
|
name: "TUIKitExample",
|
|
dependencies: ["TUIKit"]
|
|
),
|
|
.testTarget(
|
|
name: "TUIKitTests",
|
|
dependencies: ["TUIKit"]
|
|
),
|
|
]
|
|
)
|