2020-07-30 11:54:21 +02:00
|
|
|
// swift-tools-version:5.3
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "Articles",
|
2020-07-30 14:27:14 +02:00
|
|
|
platforms: [.macOS(SupportedPlatform.MacOSVersion.v10_15), .iOS(SupportedPlatform.IOSVersion.v13)],
|
2020-07-30 11:54:21 +02:00
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "Articles",
|
2020-12-21 17:55:00 +01:00
|
|
|
type: .dynamic,
|
2020-07-30 11:54:21 +02:00
|
|
|
targets: ["Articles"]),
|
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
.package(url: "https://github.com/Ranchero-Software/RSCore.git", .upToNextMajor(from: "1.0.0-beta1")),
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "Articles",
|
2020-07-30 14:27:14 +02:00
|
|
|
dependencies: [
|
2020-07-31 03:43:18 +02:00
|
|
|
"RSCore"
|
2020-07-30 14:27:14 +02:00
|
|
|
]),
|
|
|
|
]
|
2020-07-30 11:54:21 +02:00
|
|
|
)
|