Some checks are pending
ci / validate (push) Waiting to run
Stamps a SwiftPM manifest onto the scaffold so the package can be consumed by the CxLLM-SDK umbrella and downstream apps. The seed source exposes a versioned namespace placeholder; real implementation lands in subsequent phases.
19 lines
561 B
Swift
19 lines
561 B
Swift
// swift-tools-version: 5.9
|
|
// CxLLM-Drive — part of CxLLM SDK
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CxLLM-Drive",
|
|
platforms: [.macOS(.v13), .iOS(.v17)],
|
|
products: [
|
|
.library(name: "CxDrive", targets: ["CxDrive"]),
|
|
.library(name: "CxAWS", targets: ["CxAWS"]),
|
|
.library(name: "CxGit", targets: ["CxGit"]),
|
|
],
|
|
targets: [
|
|
.target(name: "CxDrive", path: "Sources/CxDrive"),
|
|
.target(name: "CxAWS", path: "Sources/CxAWS"),
|
|
.target(name: "CxGit", path: "Sources/CxGit"),
|
|
]
|
|
)
|