forked from Worldpay/worldpay-cse-lib-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
34 lines (32 loc) · 818 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
import Foundation
let package = Package(
name: "WorldpayCSE",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "WorldpayCSE",
targets: ["WorldpayCSE"]
),
],
dependencies: [
.package(url: "https://github.com/krzyzanowskim/OpenSSL.git", from: "3.3.2000")
],
targets: [
.target(
name: "WorldpayCSE",
dependencies: [
.product(name: "OpenSSL", package: "OpenSSL")
],
path: "Sources/WorldpayCSE",
publicHeadersPath: "include"
)
],
swiftLanguageVersions: [
.v5
]
)