-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added Package.swift - Updated README.md with SPM instructions - Updated .gitignore for swiftpm folder
- Loading branch information
1 parent
ce2127a
commit d18cf90
Showing
3 changed files
with
26 additions
and
0 deletions.
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 |
---|---|---|
|
@@ -23,3 +23,4 @@ xcuserdata | |
## Obj-C/Swift specific | ||
*.hmap | ||
*.ipa | ||
.swiftpm/ |
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,14 @@ | ||
// swift-tools-version:4.1 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "SwCrypt", | ||
products: [ | ||
.library(name: "SwCrypt", targets: ["SwCrypt"]) | ||
], | ||
targets: [ | ||
.target(name: "SwCrypt", path: "SwCrypt"), | ||
.testTarget(name: "SwCryptTests", dependencies: ["SwCrypt"], path: "SwCryptTests") | ||
] | ||
) |
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