Skip to content
This repository was archived by the owner on Apr 7, 2023. It is now read-only.

Commit fbaf8d1

Browse files
authored
Merge pull request #1 from FlowCrypt/feature/package
Add Package.swift
2 parents c841818 + cdfbab5 commit fbaf8d1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Package.swift

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version: 5.6
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "GMP",
7+
platforms: [
8+
.iOS(.v12)
9+
],
10+
products: [
11+
.library(
12+
name: "GMP",
13+
targets: ["GMP"]
14+
),
15+
],
16+
targets: [
17+
.binaryTarget(
18+
name: "GMP",
19+
url: "https://github.com/FlowCrypt/GMP/releases/download/6.2.1/GMP.xcframework.zip",
20+
checksum: "e35e396f571163a83bc35601fa7505339acfed45dd935c6bed5b07264fdec519"
21+
)
22+
]
23+
)

0 commit comments

Comments
 (0)