forked from EbrahimTahernejad/Tun2SocksKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
32 lines (30 loc) · 769 Bytes
/
Package.swift
File metadata and controls
32 lines (30 loc) · 769 Bytes
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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "Tun2SocksKit",
products: [
.library(
name: "Tun2SocksKit",
targets: ["Tun2SocksKit"]
),
.library(
name: "Tun2SocksKitC",
targets: ["Tun2SocksKitC"]
)
],
targets: [
.target(
name: "Tun2SocksKit",
dependencies: ["HevSocks5Tunnel", "Tun2SocksKitC"]
),
.target(
name: "Tun2SocksKitC",
publicHeadersPath: "."
),
.binaryTarget(
name: "HevSocks5Tunnel",
url: "https://github.com/EbrahimTahernejad/Tun2SocksKit/releases/download/4.11.0/HevSocks5Tunnel.xcframework.zip",
checksum: "ef031fafb8969d085bd954940049c341de807310997f48430f7898c286897876"
)
]
)