amiibo-service/Package.swift

31 lines
601 B
Swift
Raw Normal View History

2023-04-18 19:41:50 +02:00
// swift-tools-version: 5.8
import PackageDescription
let package = Package(
name: "AmiiboService",
products: [
.library(
name: "AmiiboService",
targets: [
"AmiiboService"
]
),
],
dependencies: [],
targets: [
.target(
name: "AmiiboService",
dependencies: [],
path: "Sources"
),
.testTarget(
name: "AmiiboServiceTests",
dependencies: [
"AmiiboService"
],
path: "Tests"
),
]
)