swift-settings/Package.swift
Lilith 532a170a06 chore(workflows): 🔧 Update Swift workflow files (6 total)
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-16 02:43:01 -08:00

28 lines
596 B
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "LilithSettings",
platforms: [
.iOS(.v17),
.macOS(.v13),
],
products: [
.library(
name: "LilithSettings",
targets: ["LilithSettings"]
),
],
targets: [
.target(
name: "LilithSettings",
path: "Sources/LilithSettings"
),
.testTarget(
name: "LilithSettingsTests",
dependencies: ["LilithSettings"],
path: "Tests/LilithSettingsTests"
),
]
)