-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
55 lines (52 loc) · 1.6 KB
/
Copy pathPackage.swift
File metadata and controls
55 lines (52 loc) · 1.6 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
// swift-tools-version: 6.0
import PackageDescription
import CompilerPluginSupport
import class Foundation.ProcessInfo
// get environment variables
let environment = ProcessInfo.processInfo.environment
let dynamicLibrary = environment["SWIFT_BUILD_DYNAMIC_LIBRARY"] == "1"
// force building as dynamic library
let libraryType: PackageDescription.Product.Library.LibraryType? = dynamicLibrary ? .dynamic : nil
let package = Package(
name: "SQLite",
products: [
.library(
name: "SQLite",
type: libraryType,
targets: ["SQLite"]
)
],
dependencies: [
// Darwin platforms link the system SQLite3.framework; everywhere else
// has no system SQLite, so this package's embedded copy is used instead.
.package(
url: "https://github.com/PureSwift/swift-sqlcipher",
from: "0.1.0"
)
],
targets: [
.target(
name: "SQLite",
dependencies: [
.product(
name: "SQLCipher",
package: "swift-sqlcipher",
condition: .when(platforms: [.linux, .android, .windows, .wasi, .openbsd])
)
],
swiftSettings: [
.define(
"SQLITE_SWIFT_SQLCIPHER",
.when(platforms: [.linux, .android, .windows, .wasi, .openbsd])
)
]
),
.testTarget(
name: "SQLiteTests",
dependencies: ["SQLite"],
resources: [
.copy("TestFiles")
]
)
]
)