Some checks are pending
ci / validate (push) Waiting to run
The previous URL referenced a now-defunct git.cxllm-studio.com host. Canonical Gitea is cxai-studio.com/git under the CxAI-Project org.
24 lines
656 B
Swift
24 lines
656 B
Swift
// swift-tools-version: 5.9
|
|
// CxLLM Studio — iOS Application
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CxLLMStudio-iOS",
|
|
platforms: [.iOS(.v17)],
|
|
dependencies: [
|
|
.package(url: "https://cxai-studio.com/git/CxAI-Project/CxLLM-SDK.git", branch: "main"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "CxLLMStudio",
|
|
dependencies: [
|
|
.product(name: "CxCode", package: "CxLLM-SDK"),
|
|
.product(name: "CxAWS", package: "CxLLM-SDK"),
|
|
.product(name: "CxGit", package: "CxLLM-SDK"),
|
|
],
|
|
path: "CxLLMStudio"
|
|
),
|
|
]
|
|
)
|