b8c0878ca3
Reviewed-on: #25 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
69 lines
2.1 KiB
Swift
69 lines
2.1 KiB
Swift
// swift-tools-version: 5.10
|
|
|
|
// ===----------------------------------------------------------------------===
|
|
//
|
|
// This source file is part of the Amiibo Service open source project
|
|
//
|
|
// Copyright (c) 2026 Röck+Cöde VoF. and the Amiibo Service project authors
|
|
// Licensed under Apache license v2.0
|
|
//
|
|
// See LICENSE for license information
|
|
// See CONTRIBUTORS for the list of Amiibo Service project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// ===----------------------------------------------------------------------===
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: AmiiboService.package,
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.macOS(.v10_15),
|
|
.tvOS(.v13),
|
|
.visionOS(.v1),
|
|
.watchOS(.v6)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: AmiiboService.package,
|
|
targets: [AmiiboService.target]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-openapi-generator.git", exact: "1.11.0"),
|
|
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.5.0"),
|
|
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.2"),
|
|
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.1.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: AmiiboService.target,
|
|
dependencies: [
|
|
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
|
|
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession")
|
|
],
|
|
path: "Sources/AmiiboService",
|
|
plugins: [
|
|
.plugin(name: "OpenAPIGenerator", package: "swift-openapi-generator"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: AmiiboService.test,
|
|
dependencies: [
|
|
.byName(name: AmiiboService.target)
|
|
],
|
|
path: "Tests/AmiiboService"
|
|
),
|
|
]
|
|
)
|
|
|
|
// MARK: - Constants
|
|
|
|
enum AmiiboService {
|
|
static let package = "amiibo-service"
|
|
static let target = "AmiiboService"
|
|
static let test = "\(AmiiboService.target)Tests"
|
|
}
|