Skip to content
This repository was archived by the owner on Jul 28, 2021. It is now read-only.

Commit 523646d

Browse files
author
Chris
authored
Merge pull request #2 from kiliankoe/swiftpm-support
Support SwiftPM
2 parents b09590d + 0476b2d commit 523646d

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

ArgumentParserKit/Classes/OutputByteStream.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See http://swift.org/LICENSE.txt for license information
88
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
99
*/
10+
import Dispatch
1011

1112
/// Convert an integer in 0..<16 to its hexadecimal ASCII character.
1213
private func hexdigit(_ value: UInt8) -> UInt8 {

Package.swift

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "ArgumentParserKit",
7+
products: [
8+
.library(
9+
name: "ArgumentParserKit",
10+
targets: ["ArgumentParserKit"]),
11+
],
12+
dependencies: [],
13+
targets: [
14+
.target(
15+
name: "ArgumentParserKit",
16+
dependencies: [],
17+
path: "ArgumentParserKit/Classes"),
18+
]
19+
)

0 commit comments

Comments
 (0)