Some checks are pending
ci / validate (push) Waiting to run
Stamps a SwiftPM manifest onto the scaffold; seed main prints a version banner. Real implementation lands in subsequent phases.
15 lines
334 B
Swift
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"),
|
|
]
|
|
)
|