forked from PureSwift/BluetoothLinux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (24 loc) · 692 Bytes
/
Copy pathPackage.swift
File metadata and controls
25 lines (24 loc) · 692 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
import PackageDescription
let package = Package(
name: "BluetoothLinux",
targets: [
Target(
name: "BluetoothLinux",
dependencies: [
.Target(name: "CSwiftBluetoothLinux")
]),
Target(
name: "CSwiftBluetoothLinux"),
Target(
name: "CSwiftBluetoothLinuxTest"),
Target(
name: "BluetoothLinuxTests",
dependencies: [
.Target(name: "BluetoothLinux"),
.Target(name: "CSwiftBluetoothLinuxTest")
])
],
dependencies: [
.Package(url: "https://github.com/PureSwift/Bluetooth.git", majorVersion: 1)
]
)