23 lines
No EOL
785 B
Swift
23 lines
No EOL
785 B
Swift
// swift-tools-version: 5.10
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "fj-admin",
|
|
dependencies: [
|
|
.package(url: "https://github.com/DDBKit/DDBKit", exact: "0.2.4"), // change this to latest ver
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
|
// Targets can depend on other targets in this package and products from dependencies.
|
|
.executableTarget(
|
|
name: "fj-admin",
|
|
dependencies: [
|
|
.product(name: "DDBKit", package: "DDBKit"),
|
|
.product(name: "DDBKitUtilities", package: "DDBKit"),
|
|
.product(name: "DDBKitFoundation", package: "DDBKit"),
|
|
]
|
|
),
|
|
]
|
|
) |