Skip to content

Commit

Permalink
Update swift package to modern syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pahnev committed Oct 5, 2019
1 parent 0dbbf89 commit 4ea5691
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// swift-tools-version:5.0
//
// Package.swift
// Copyright (c) 2017 Nicholas Maccharoli
//
Expand All @@ -18,9 +20,18 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

import PackageDescription

let package = Package(
name: "UIDeviceComplete"
name: "UIDeviceComplete",
platforms: [
.iOS(.v8)
],
products: [
.library(name: "UIDeviceComplete", targets: ["UIDeviceComplete"])
],
targets: [
.target(name: "UIDeviceComplete", path: "Sources"),
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 4ea5691

Please sign in to comment.