-
Notifications
You must be signed in to change notification settings - Fork 40
42 lines (41 loc) · 933 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "mysql-swift",
products: [
.library(name: "MySQL", targets: ["MySQL"])
],
targets: [
.systemLibrary(
name: "CMySQL",
path: "Sources/cmysql",
pkgConfig: "cmysql",
providers: [
.brew(["cmysql"]),
.apt(["libmysqlclient-dev"])
]
),
.target(
name: "SQLFormatter"
),
.target(
name: "MySQL",
dependencies: [
"CMySQL",
"SQLFormatter",
]
),
.testTarget(
name: "MySQLTests",
dependencies: [
"MySQL"
]
),
.testTarget(
name: "SQLFormatterTests",
dependencies: [
"MySQL"
]
)
]
)