32 lines
1018 B
Swift
32 lines
1018 B
Swift
// swift-tools-version:5.3
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "ArticlesDatabase",
|
|
platforms: [.macOS(SupportedPlatform.MacOSVersion.v10_15), .iOS(SupportedPlatform.IOSVersion.v13)],
|
|
products: [
|
|
.library(
|
|
name: "ArticlesDatabase",
|
|
type: .dynamic,
|
|
targets: ["ArticlesDatabase"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/Ranchero-Software/RSCore.git", .upToNextMajor(from: "1.0.0")),
|
|
.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: "../Articles", .upToNextMajor(from: "1.0.0")),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "ArticlesDatabase",
|
|
dependencies: [
|
|
"RSCore",
|
|
"RSDatabase",
|
|
"RSParser",
|
|
"Articles",
|
|
]),
|
|
]
|
|
)
|