Skip to content

Commit

Permalink
Add more README content
Browse files Browse the repository at this point in the history
  • Loading branch information
dduan committed Apr 20, 2022
1 parent 33ce9c2 commit c48e832
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,27 @@ eliminates the need for `#if os` imports.
This package pretends to be part of [apple/swift-system](), and aspire to be subsumed by it one day.

[apple/swift-system]: https://github.com/apple/swift-system

## Install

This is a standard SwiftPM package. Include it the standard way in your manifest:

```swift
let package = Package(
// name, platforms, products, etc.
dependencies: [
.package(url: "https://github.com/dduan/swift-system-exit", from: "1.0.0"),
// other dependencies
],
targets: [
.target(name: "MyTarget", dependencies: [
.product(name: "SystemExit", package: "swift-system-exit"),
]),
// other targets
]
)
```

## LICENSE

See [LICENSE](LICENSE.txt) for license information.

0 comments on commit c48e832

Please sign in to comment.