Add Swift PackageManagement support

This commit is contained in:
tobias 2019-06-09 19:40:12 +02:00
parent 29b404765f
commit 73e31128fb
1 changed files with 22 additions and 0 deletions

22
Package.swift Normal file
View File

@ -0,0 +1,22 @@
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "UTMConversion",
products: [
.library(
name: "UTMConversion",
targets: ["UTMConversion"]),
],
targets: [
.target(
name: "UTMConversion",
dependencies: [],
path: "UTMConversion"),
.testTarget(
name: "UTMConversionTests",
dependencies: ["UTMConversion"],
path: "UTMConversionTests"),
]
)