-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
52 lines (49 loc) · 3.19 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "SebbuKit",
platforms: [
.macOS(.v12),
.iOS(.v15)
],
products: [
.library(name: "SebbuKit", targets: ["SebbuKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", branch: "main"),
.package(url: "https://github.com/apple/swift-nio-ssl.git", branch: "main"),
.package(url: "https://github.com/apple/swift-collections.git", branch: "main"),
.package(url: "https://github.com/apple/swift-nio-transport-services", branch: "main"),
.package(url: "https://github.com/MarSe32m/GLMSwift.git", branch: "main"),
.package(url: "https://github.com/MarSe32m/sebbu-bitstream.git", branch: "main"),
.package(url: "https://github.com/MarSe32m/sebbu-ts-ds.git", branch: "main"),
.package(url: "https://github.com/MarSe32m/sebbu-networking.git", branch: "main"),
.package(url: "https://github.com/MarSe32m/sebbu-concurrency.git", branch: "main"),
.package(url: "https://github.com/MarSe32m/sebbu-cryptography.git", branch: "main"),
.package(url: "https://github.com/vapor/websocket-kit.git", branch: "main")
],
targets: [
.target(name: "SebbuKit",
dependencies: [
.product(name: "NIO",package: "swift-nio", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "NIOConcurrencyHelpers", package: "swift-nio", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "NIOFoundationCompat", package: "swift-nio", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "NIOSSL", package: "swift-nio-ssl", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "NIOHTTP1", package: "swift-nio", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "NIOWebSocket", package: "swift-nio", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "WebSocketKit", package: "websocket-kit", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .linux])),
.product(name: "NIOTransportServices", package: "swift-nio-transport-services", condition: .when(platforms: [.iOS, .macOS, .watchOS, .tvOS])),
.product(name: "GLMSwift", package: "GLMSwift"),
.product(name: "SebbuBitStream", package: "sebbu-bitstream"),
.product(name: "SebbuCrypto", package: "sebbu-cryptography"),
.product(name: "SebbuTSDS", package: "sebbu-ts-ds"),
.product(name: "SebbuNetworking", package: "sebbu-networking"),
.product(name: "SebbuConcurrency", package: "sebbu-concurrency"),
.product(name: "DequeModule", package: "swift-collections")
],
resources:[.process("SpriteKit/control_pad.imageset")]),
.testTarget(
name: "SebbuKitTests",
dependencies: ["SebbuKit"]),
]
)