This PR contains the work done to address the issue #10, that was raised based on the build logs from publishing the package in the Swift Package Index. To provide further details about the work done: - [x] fixed the `Router` protocol that was causing a compilation issue on *watchOS* platforms; - [x] downgraded the swift tools version in the `Package` file to v5.5; - [x] bumped the minimum platform version in the `Package` file to restrict support to the last 2 major releases; - [x] written the *Installation* section in the `README` file; - [x] updated the project logo assets, including light and dark versions; - [x] updated the project logo in the `README` file and added support for both light and dark modes. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: #11
109 lines
2.4 KiB
Swift
109 lines
2.4 KiB
Swift
// swift-tools-version: 5.5
|
|
//
|
|
// 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
|
|
//
|
|
|
|
import PackageDescription
|
|
|
|
private var excludePlatforms: [String] = [.PlatformFolder.iOS]
|
|
|
|
#if os(iOS)
|
|
excludePlatforms = []
|
|
#endif
|
|
|
|
let package = Package(
|
|
name: "SwiftLibs",
|
|
platforms: [
|
|
.iOS(.v15),
|
|
.macOS(.v12),
|
|
.tvOS(.v15),
|
|
.watchOS(.v8)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "SwiftLibs",
|
|
targets: [
|
|
"Communications",
|
|
"Coordination",
|
|
"Core",
|
|
"Dependencies",
|
|
"Persistence"
|
|
]
|
|
),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "Communications",
|
|
dependencies: []
|
|
),
|
|
.target(
|
|
name: "Coordination",
|
|
dependencies: [],
|
|
exclude: excludePlatforms
|
|
),
|
|
.target(
|
|
name: "Core",
|
|
dependencies: []
|
|
),
|
|
.target(
|
|
name: "Dependencies",
|
|
dependencies: []
|
|
),
|
|
.target(
|
|
name: "Persistence",
|
|
dependencies: []
|
|
),
|
|
.testTarget(
|
|
name: "CommunicationsTests",
|
|
dependencies: [
|
|
"Communications"
|
|
],
|
|
path: "Tests/Communications"
|
|
),
|
|
.testTarget(
|
|
name: "CoordinationTests",
|
|
dependencies: [
|
|
"Coordination"
|
|
],
|
|
path: "Tests/Coordination",
|
|
exclude: excludePlatforms
|
|
),
|
|
.testTarget(
|
|
name: "CoreTests",
|
|
dependencies: [
|
|
"Core"
|
|
],
|
|
path: "Tests/Core"
|
|
),
|
|
.testTarget(
|
|
name: "DependenciesTests",
|
|
dependencies: [
|
|
"Dependencies"
|
|
],
|
|
path: "Tests/Dependencies"
|
|
),
|
|
.testTarget(
|
|
name: "PersistenceTests",
|
|
dependencies: [
|
|
"Persistence"
|
|
],
|
|
path: "Tests/Persistence"
|
|
),
|
|
]
|
|
)
|
|
|
|
// MARK: - String+Constants
|
|
|
|
private extension String {
|
|
enum PlatformFolder {
|
|
static let iOS = "Platform/iOS"
|
|
}
|
|
}
|