forked from garriguv/SQLiteMigrationManager.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
23 lines (22 loc) · 762 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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "SQLiteMigrationManager.swift",
products: [
.library(name: "SQLiteMigrationManager", targets: ["SQLiteMigrationManager"])
],
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3")
],
targets: [
.target(
name: "SQLiteMigrationManager",
dependencies: ["SQLite"],
path: "Sources",
sources: ["SQLiteMigrationManager.swift"]),
.testTarget(
name: "SQLiteMigrationManagerTests",
dependencies: ["SQLiteMigrationManager"],
path: "Tests",
sources: ["SQLiteMigrationManagerTests.swift"])
])