forked from sammysmallman/OSCKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
29 lines (28 loc) · 813 Bytes
/
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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "OSCKit",
platforms: [
.iOS(.v9),
.macOS(.v10_10),
.tvOS(.v9)
],
products: [
.library(
name: "OSCKit",
targets: ["OSCKit"])
],
dependencies: [
.package(url: "https://github.com/robbiehanson/CocoaAsyncSocket", from: "7.6.4"),
.package(name: "NetUtils" ,url: "https://github.com/svdo/swift-netutils", from: "4.1.0"),
.package(url: "https://github.com/dsmurfin/CoreOSC", "1.0.0"..<"1.1.0")
],
targets: [
.target(
name: "OSCKit",
dependencies: ["CocoaAsyncSocket", "NetUtils", "CoreOSC"]),
.testTarget(
name: "OSCKitTests",
dependencies: ["OSCKit"])
]
)