CxLLM-CLI/Package.swift
CxAI Agent 97a8abf454
Some checks are pending
ci / validate (push) Waiting to run
feat: add Package.swift + cxllm executable seed
Stamps a SwiftPM manifest onto the scaffold; seed main prints a
version banner. Real implementation lands in subsequent phases.
2026-05-16 14:21:23 -05:00

15 lines
334 B
Swift

// swift-tools-version: 5.9
// CxLLM-CLI part of CxLLM SDK
import PackageDescription
let package = Package(
name: "CxLLM-CLI",
platforms: [.macOS(.v13)],
products: [
.executable(name: "cxllm", targets: ["cxllm"]),
],
targets: [
.executableTarget(name: "cxllm", path: "Sources/cxllm"),
]
)