Shared CocotteCockpitKit (views/model/LiveCockpitAPI) + iOS TabView shell (Drops/Assets/Fleet/Activity/Insights) + macOS shell. XcodeGen project.yml. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
539 B
Swift
21 lines
539 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
// ai-copilot macOS front-end (stream 1) — NSApplication host over the shared Kit.
|
|
|
|
let package = Package(
|
|
name: "CocotteCockpitMac",
|
|
platforms: [
|
|
.macOS(.v14),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../cockpit-kit"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "CocotteCockpit",
|
|
dependencies: [.product(name: "CocotteCockpitKit", package: "cockpit-kit")],
|
|
path: "Sources/CocotteCockpit"
|
|
),
|
|
]
|
|
)
|