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