-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.swift
24 lines (22 loc) · 1.04 KB
/
Project.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import ProjectDescription
import ProjectDescriptionHelpers
let launchArguments = [
"current": true,
"load": false,
"show": false,
"send": false,
"--prod": false
]
let project = Project(name: "SwiftWeeklyBriefNewsCli",
packages: [.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMajor(from: "0.4.0")),
.package(url: "https://github.com/Ranchero-Software/RSParser", .upToNextMajor(from: "2.0.0"))],
targets: [
Target(name: "CommandLineTool",
platform: .macOS,
product: .commandLineTool,
bundleId: "net.appforce1.swiftweeklybrief.cli",
infoPlist: .default,
sources: ["Sources/**"],
dependencies: [.package(product: "ArgumentParser"), .package(product: "RSParser")],
launchArguments: launchArguments)
])