2020-07-30 14:27:14 +02:00
|
|
|
// swift-tools-version:5.3
|
|
|
|
import PackageDescription
|
|
|
|
|
2022-06-19 05:57:10 +02:00
|
|
|
var dependencies: [Package.Dependency] = [
|
2022-11-02 02:24:58 +01:00
|
|
|
.package(url: "https://github.com/Ranchero-Software/RSCore.git", .upToNextMinor(from: "1.0.0")),
|
2022-06-19 05:57:10 +02:00
|
|
|
.package(url: "https://github.com/Ranchero-Software/RSDatabase.git", .upToNextMajor(from: "1.0.0")),
|
|
|
|
.package(url: "https://github.com/Ranchero-Software/RSParser.git", .upToNextMajor(from: "2.0.2")),
|
|
|
|
.package(url: "https://github.com/Ranchero-Software/RSWeb.git", .upToNextMajor(from: "1.0.0")),
|
|
|
|
]
|
|
|
|
|
|
|
|
#if swift(>=5.6)
|
|
|
|
dependencies.append(contentsOf: [
|
|
|
|
.package(path: "../Articles"),
|
|
|
|
.package(path: "../ArticlesDatabase"),
|
|
|
|
.package(path: "../Secrets"),
|
|
|
|
.package(path: "../SyncDatabase"),
|
|
|
|
])
|
|
|
|
#else
|
|
|
|
dependencies.append(contentsOf: [
|
|
|
|
.package(url: "../Articles", .upToNextMajor(from: "1.0.0")),
|
|
|
|
.package(url: "../ArticlesDatabase", .upToNextMajor(from: "1.0.0")),
|
|
|
|
.package(url: "../Secrets", .upToNextMajor(from: "1.0.0")),
|
|
|
|
.package(url: "../SyncDatabase", .upToNextMajor(from: "1.0.0")),
|
|
|
|
])
|
|
|
|
#endif
|
|
|
|
|
2020-07-30 14:27:14 +02:00
|
|
|
let package = Package(
|
|
|
|
name: "Account",
|
|
|
|
platforms: [.macOS(SupportedPlatform.MacOSVersion.v10_15), .iOS(SupportedPlatform.IOSVersion.v13)],
|
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "Account",
|
2020-12-21 17:55:00 +01:00
|
|
|
type: .dynamic,
|
2020-07-30 14:27:14 +02:00
|
|
|
targets: ["Account"]),
|
|
|
|
],
|
2022-06-19 05:57:10 +02:00
|
|
|
dependencies: dependencies,
|
2020-07-30 14:27:14 +02:00
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "Account",
|
|
|
|
dependencies: [
|
2020-07-31 03:43:18 +02:00
|
|
|
"RSCore",
|
|
|
|
"RSDatabase",
|
|
|
|
"RSParser",
|
|
|
|
"RSWeb",
|
|
|
|
"Articles",
|
|
|
|
"ArticlesDatabase",
|
|
|
|
"Secrets",
|
|
|
|
"SyncDatabase",
|
2020-07-30 14:27:14 +02:00
|
|
|
]),
|
|
|
|
.testTarget(
|
|
|
|
name: "AccountTests",
|
|
|
|
dependencies: ["Account"],
|
|
|
|
resources: [
|
|
|
|
.copy("JSON"),
|
|
|
|
]),
|
|
|
|
]
|
|
|
|
)
|