22 lines
509 B
Swift
22 lines
509 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CueIOS",
|
|
platforms: [.iOS(.v17), .macOS(.v14)],
|
|
products: [
|
|
.library(name: "CueIOS", targets: ["CueIOS"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/groue/GRDB.swift.git", from: "7.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "CueIOS",
|
|
dependencies: [.product(name: "GRDB", package: "GRDB.swift")],
|
|
path: "CueIOS"
|
|
),
|
|
]
|
|
)
|