Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpsim/swiftpmutilityexample
https://github.com/jpsim/swiftpmutilityexample
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jpsim/swiftpmutilityexample
- Owner: jpsim
- Created: 2018-12-27T02:11:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T02:11:21.000Z (about 6 years ago)
- Last Synced: 2025-01-14T03:08:46.745Z (10 days ago)
- Language: Swift
- Homepage:
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SwiftPM Utility Sample Project
This repository serves as a simple example of how to use SwiftPM's Utility
module both from SwiftPM on the command line and via a generated Xcode project.It creates a `Version` value representing `0.0.1` and prints its description to
standard out.To run from the command line, run:
```
$ swift run
```To generate an Xcode project, run:
```
$ swift package generate-xcodeproj
$ open swiftpmutil.xcodeproj
```To run from the Xcode project, select the "swiftpmutil" scheme, select "My Mac"
as the target and press command-R.