-
Notifications
You must be signed in to change notification settings - Fork 197
/
Package.swift
41 lines (39 loc) · 1.03 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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "BonMot",
platforms: [
.iOS(.v11),
.macOS(.v10_11),
.tvOS(.v11),
.watchOS(.v2),
],
products: [
.library(
name: "BonMot",
targets: ["BonMot"]),
],
targets: [
.target(
name: "BonMot",
dependencies: [],
path: "Sources",
exclude: ["Info.plist"]
),
.testTarget(
name: "BonMotTests",
dependencies: ["BonMot"],
path: "Tests",
exclude: [
"Info.plist",
"BonMot-iOSTests.xctestplan", // *.xctestplan didn't seem to work
"BonMot-OSXTests.xctestplan",
"BonMot-tvOSTests.xctestplan",
],
resources: [
.process("Resources"),
]),
],
swiftLanguageVersions: [.v5]
)