forked from vapor-community/sockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
25 lines (24 loc) · 1.02 KB
/
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
import PackageDescription
let package = Package(
name: "Socks",
targets: [
Target(name: "SocksCore"),
Target(name: "Socks", dependencies: ["SocksCore"]),
//Target(name: "SocksCoreExampleTCPServer", dependencies: ["SocksCore"]),
//Target(name: "SocksCoreExampleTCPKeepAliveServer", dependencies: ["Socks"]),
//Target(name: "SocksCoreExampleTCPClient", dependencies: ["SocksCore"]),
//Target(name: "SocksExampleTCPServer", dependencies: ["Socks"]),
//Target(name: "SocksExampleTCPClient", dependencies: ["Socks"]),
//Target(name: "SocksExampleUDPClient", dependencies: ["Socks"]),
//Target(name: "SocksExampleUDPServer", dependencies: ["Socks"]),
],
exclude: [
"Sources/SocksCoreExampleTCPServer",
"Sources/SocksCoreExampleTCPKeepAliveServer",
"Sources/SocksCoreExampleTCPClient",
"Sources/SocksExampleTCPServer",
"Sources/SocksExampleTCPClient",
"Sources/SocksExampleUDPClient",
"Sources/SocksExampleUDPServer",
]
)