forked from mac-cain13/R.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use SPM tools-verison 4 Package.swift
- Loading branch information
1 parent
22e0c35
commit 8f55ffb
Showing
1 changed file
with
11 additions
and
6 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 |
---|---|---|
@@ -1,16 +1,21 @@ | ||
// swift-tools-version:4.0 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "rswift", | ||
dependencies: [ | ||
.package(url: "https://github.com/kylef/Commander.git", .upToNextMinor(from: "0.6.0")), | ||
.package(url: "https://github.com/tomlokhorst/XcodeEdit", from: "1.0.0") | ||
], | ||
targets: [ | ||
Target( | ||
.target( | ||
name: "rswift", | ||
dependencies: ["RswiftCore"] | ||
), | ||
Target(name: "RswiftCore"), | ||
.target( | ||
name: "RswiftCore", | ||
dependencies: ["Commander", "XcodeEdit"] | ||
), | ||
], | ||
dependencies: [ | ||
.Package(url: "https://github.com/kylef/Commander.git", majorVersion: 0, minor: 6), | ||
.Package(url: "https://github.com/tomlokhorst/XcodeEdit", majorVersion: 1) | ||
] | ||
swiftLanguageVersions: [4] | ||
) |