-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Swift Package Manager Support (#89)
* Added Swift Package Manager support In order to make it work it is necessary to create a new Tag/Release for version 4.2.9 as it's specified in Line 5 * Update README.md
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// swift-tools-version:5.0 | ||
// | ||
// AFDateHelper.swift | ||
// https://github.com/melvitax/DateHelper | ||
// Version 4.2.9 | ||
// | ||
// Created by David Velarde on 6/7/19. | ||
// Copyright (c) 2019. All rights reserved. | ||
// | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "DateHelper", | ||
platforms: [ | ||
.iOS(.v9), | ||
.macOS(.v10_11), | ||
.tvOS(.v9), | ||
.watchOS(.v2) | ||
], | ||
products: [ | ||
.library(name: "DateHelper", targets: ["DateHelper"]) | ||
], | ||
targets: [ | ||
.target( | ||
name: "DateHelper", | ||
path: "Sources" | ||
) | ||
], | ||
swiftLanguageVersions: [.v5] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters