Skip to content

Commit

Permalink
add Swift Package Manager support
Browse files Browse the repository at this point in the history
Authored-by: Arkayn Gamer <[email protected]>
  • Loading branch information
dlo committed Jul 3, 2021
1 parent 1c4a192 commit 5d17387
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// swift-tools-version:5.3

//
// Package.swift
// IAPReceiptVerifier
//
// Created by Mark Hoath on 3/7/21.
//

import PackageDescription

let package = Package (
name: "IAPReceiptVerifier",
platforms: [
.iOS(.v14)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "IAPReceiptVerifier",
targets: ["IAPReceiptVerifier"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "IAPReceiptVerifier",
dependencies: [],
path: "IAPReceiptVerifier/Classes")
]
)

0 comments on commit 5d17387

Please sign in to comment.