2023-04-28 17:37:09 +00:00
|
|
|
// swift-tools-version: 5.7
|
2023-04-25 13:38:30 +00:00
|
|
|
//
|
|
|
|
// This source file is part of the SwiftLibs open source project
|
|
|
|
//
|
|
|
|
// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors
|
|
|
|
// Licensed under the EUPL 1.2 or later.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for license information
|
|
|
|
// See CONTRIBUTORS.txt for the list of SwiftLibs project authors
|
|
|
|
//
|
2023-04-15 00:45:32 +02:00
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
2023-04-28 17:37:09 +00:00
|
|
|
// MARK: - Variables
|
2023-04-16 14:42:42 +00:00
|
|
|
|
2023-04-28 17:37:09 +00:00
|
|
|
private var targetsLibrary: [String] = [
|
|
|
|
.Target.communications,
|
|
|
|
.Target.coordination,
|
|
|
|
.Target.core,
|
|
|
|
.Target.dependencies,
|
|
|
|
]
|
|
|
|
|
|
|
|
private var targetsPackage: [Target] = [
|
|
|
|
.target(
|
|
|
|
name: .Target.communications,
|
|
|
|
dependencies: []
|
|
|
|
),
|
|
|
|
.target(
|
|
|
|
name: .Target.coordination,
|
|
|
|
dependencies: []
|
|
|
|
),
|
|
|
|
.target(
|
|
|
|
name: .Target.core,
|
|
|
|
dependencies: []
|
|
|
|
),
|
|
|
|
.target(
|
|
|
|
name: .Target.dependencies,
|
|
|
|
dependencies: []
|
|
|
|
),
|
|
|
|
.testTarget(
|
|
|
|
name: "CommunicationsTests",
|
|
|
|
dependencies: [
|
|
|
|
.init(stringLiteral: .Target.communications)
|
|
|
|
],
|
|
|
|
path: "Tests/Communications"
|
|
|
|
),
|
|
|
|
.testTarget(
|
|
|
|
name: "CoordinationTests",
|
|
|
|
dependencies: [
|
|
|
|
.init(stringLiteral: .Target.coordination)
|
|
|
|
],
|
|
|
|
path: "Tests/Coordination"
|
|
|
|
),
|
|
|
|
.testTarget(
|
|
|
|
name: "CoreTests",
|
|
|
|
dependencies: [
|
|
|
|
.init(stringLiteral: .Target.core)
|
|
|
|
],
|
|
|
|
path: "Tests/Core"
|
|
|
|
),
|
|
|
|
.testTarget(
|
|
|
|
name: "DependenciesTests",
|
|
|
|
dependencies: [
|
|
|
|
.init(stringLiteral: .Target.dependencies)
|
|
|
|
],
|
|
|
|
path: "Tests/Dependencies"
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
|
|
|
|
targetsLibrary.append(.Target.persistence)
|
|
|
|
targetsPackage.append(contentsOf: [
|
|
|
|
.target(
|
|
|
|
name: .Target.persistence,
|
|
|
|
dependencies: []
|
|
|
|
),
|
|
|
|
.testTarget(
|
|
|
|
name: "PersistenceTests",
|
|
|
|
dependencies: [
|
|
|
|
.init(stringLiteral: .Target.persistence)
|
|
|
|
],
|
|
|
|
path: "Tests/Persistence",
|
|
|
|
resources: [
|
|
|
|
.process("Resources")
|
|
|
|
]
|
|
|
|
),
|
|
|
|
])
|
2023-04-16 14:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
2023-04-28 17:37:09 +00:00
|
|
|
// MARK: - Package
|
|
|
|
|
2023-04-15 00:45:32 +02:00
|
|
|
let package = Package(
|
2023-04-28 17:37:09 +00:00
|
|
|
name: .Package.name,
|
2023-05-19 16:58:50 +00:00
|
|
|
defaultLocalization: "en",
|
2023-04-16 18:47:59 +00:00
|
|
|
platforms: [
|
2023-04-25 13:38:30 +00:00
|
|
|
.iOS(.v15),
|
|
|
|
.macOS(.v12),
|
|
|
|
.tvOS(.v15),
|
|
|
|
.watchOS(.v8)
|
2023-04-16 18:47:59 +00:00
|
|
|
],
|
2023-04-15 00:45:32 +02:00
|
|
|
products: [
|
|
|
|
.library(
|
2023-04-28 17:37:09 +00:00
|
|
|
name: .Package.name,
|
|
|
|
targets: targetsLibrary
|
2023-04-15 00:45:32 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
dependencies: [],
|
2023-04-28 17:37:09 +00:00
|
|
|
targets: targetsPackage
|
2023-04-15 00:45:32 +02:00
|
|
|
)
|
2023-04-16 14:42:42 +00:00
|
|
|
|
|
|
|
// MARK: - String+Constants
|
|
|
|
|
|
|
|
private extension String {
|
2023-04-28 17:37:09 +00:00
|
|
|
enum Package {
|
|
|
|
static let name = "SwiftLibs"
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Target {
|
|
|
|
static let communications = "Communications"
|
|
|
|
static let coordination = "Coordination"
|
|
|
|
static let core = "Core"
|
|
|
|
static let dependencies = "Dependencies"
|
|
|
|
static let persistence = "Persistence"
|
2023-04-16 14:42:42 +00:00
|
|
|
}
|
|
|
|
}
|