41 lines
929 B
Swift
41 lines
929 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "VelodySync",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v14),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "VelodySync",
|
|
targets: ["VelodySync"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../VelodyDomain"),
|
|
.package(path: "../VelodyNetworking"),
|
|
.package(path: "../VelodyPersistence"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "VelodySync",
|
|
dependencies: [
|
|
"VelodyDomain",
|
|
"VelodyNetworking",
|
|
"VelodyPersistence",
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "VelodySyncTests",
|
|
dependencies: [
|
|
"VelodyDomain",
|
|
"VelodyNetworking",
|
|
"VelodyPersistence",
|
|
"VelodySync",
|
|
]
|
|
),
|
|
]
|
|
)
|