forked from cpisciotta/xcbeautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
28 lines (27 loc) · 893 Bytes
/
Package.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
25
26
27
28
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "xcbeautify",
products: [
.executable(name: "xcbeautify", targets: ["xcbeautify"]),
.library(name: "XcbeautifyLib", targets: ["XcbeautifyLib"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "0.3.1"),
.package(url: "https://github.com/getGuaka/Colorizer.git", from: "0.1.0"),
],
targets: [
.target(
name: "XcbeautifyLib",
dependencies: ["Colorizer"]),
.target(
name: "xcbeautify",
dependencies: [
"XcbeautifyLib",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]),
.testTarget(
name: "XcbeautifyLibTests",
dependencies: ["XcbeautifyLib"]),
]
)