-
Notifications
You must be signed in to change notification settings - Fork 11
/
Package.swift
36 lines (35 loc) · 959 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
30
31
32
33
34
35
36
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "OSCKit",
platforms: [
.iOS(.v9),
.macOS(.v10_15),
.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/sammysmallman/CoreOSC.git", from: "2.0.0")
],
targets: [
.target(
name: "OSCKit",
dependencies: [
"CocoaAsyncSocket",
"NetUtils",
"CoreOSC"
],
resources: [
.process("LICENSE.md")
]),
.testTarget(
name: "OSCKitTests",
dependencies: ["OSCKit"])
]
)