Skip to content

Commit

Permalink
Updated SMP tools version
Browse files Browse the repository at this point in the history
  • Loading branch information
OrkhanAlikhanov committed May 26, 2018
1 parent 30efb11 commit 78e2da1
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
// swift-tools-version:4.0

import PackageDescription

let package = Package(
name: "XmlSwift"
name: "XmlSwift",
products: [
.library(
name: "XmlSwift",
targets: ["XmlSwift"]),
],
targets: [
.target(
name: "XmlSwift",
path: "Sources"),
.testTarget(
name: "XmlSwiftTests",
dependencies: ["XmlSwift"]),
]
)

0 comments on commit 78e2da1

Please sign in to comment.