Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 17s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
28 lines
588 B
Swift
28 lines
588 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LilithLogging",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v13),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "LilithLogging",
|
|
targets: ["LilithLogging"]
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LilithLogging",
|
|
path: "Sources/LilithLogging"
|
|
),
|
|
.testTarget(
|
|
name: "LilithLoggingTests",
|
|
dependencies: ["LilithLogging"],
|
|
path: "Tests/LilithLoggingTests"
|
|
),
|
|
]
|
|
)
|