Merge pull request #9 from Tobisaninfo/master

Add Swift PackageManagement support
This commit is contained in:
peterringset 2019-10-12 11:51:59 +02:00 committed by GitHub
commit 45c3024bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"),
]
)