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