Skip to content

Commit 5d17387

Browse files
committed
add Swift Package Manager support
Authored-by: Arkayn Gamer <markahoath@gmail.com>
1 parent 1c4a192 commit 5d17387

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

Package.swift

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// swift-tools-version:5.3
2+
3+
//
4+
// Package.swift
5+
// IAPReceiptVerifier
6+
//
7+
// Created by Mark Hoath on 3/7/21.
8+
//
9+
10+
import PackageDescription
11+
12+
let package = Package (
13+
name: "IAPReceiptVerifier",
14+
platforms: [
15+
.iOS(.v14)
16+
],
17+
products: [
18+
// Products define the executables and libraries a package produces, and make them visible to other packages.
19+
.library(
20+
name: "IAPReceiptVerifier",
21+
targets: ["IAPReceiptVerifier"])
22+
],
23+
dependencies: [
24+
// Dependencies declare other packages that this package depends on.
25+
],
26+
targets: [
27+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
28+
// Targets can depend on other targets in this package, and on products in packages this package depends on.
29+
.target(
30+
name: "IAPReceiptVerifier",
31+
dependencies: [],
32+
path: "IAPReceiptVerifier/Classes")
33+
]
34+
)

0 commit comments

Comments
 (0)