Merge pull request #1 from TouchInstinct/feature/spm

Add spm
This commit is contained in:
Loupehope 2020-08-01 15:43:39 +03:00 committed by GitHub
commit a0dcaa3045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

21
Package.swift Normal file
View File

@ -0,0 +1,21 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "QRCodeReader",
platforms: [
.iOS(.v10)
],
products: [
.library(
name: "QRCodeReader",
targets: ["QRCodeReader"]),
],
targets: [
.target(
name: "QRCodeReader",
path: "QRCodeReader/Classes"),
]
)