version 1.0.0
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// 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",
|
||||
]
|
||||
),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user