We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd79084 commit 536e93aCopy full SHA for 536e93a
1 file changed
Package.swift
@@ -0,0 +1,27 @@
1
+// swift-tools-version:5.3
2
+// The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+import PackageDescription
5
6
+let package = Package(
7
+ name: "OpenSSL",
8
+ products: [
9
+ .library(
10
11
+ targets: ["OpenSSL"]),
12
+ ],
13
+ dependencies: [
14
15
+ targets: [
16
+ .binaryTarget(
17
18
+ url: "https://github.com/codinn/openssl-apple/releases/download/1.1.1h/OpenSSL.xcframework.zip",
19
+ checksum: "83e4dfd08a48a6015ac9f7e355b6e549a787380961cbd323a861cc82bb771e39"
20
+ ),
21
+ ]
22
+)
23
24
+/*
25
+xcframework successfully written out to: frameworks/OpenSSL.xcframework
26
+83e4dfd08a48a6015ac9f7e355b6e549a787380961cbd323a861cc82bb771e39
27
+*/
0 commit comments