All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 2m50s
27 lines
989 B
Swift
27 lines
989 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: "SagaTable",
|
|
platforms: [.macOS(.v12)],
|
|
dependencies: [
|
|
.package(url: "https://github.com/loopwerk/Saga", from: "2.0.0"),
|
|
.package(url: "https://github.com/loopwerk/SagaParsleyMarkdownReader", from: "1.0.0"),
|
|
.package(url: "https://github.com/loopwerk/SagaSwimRenderer", from: "1.0.0"),
|
|
],
|
|
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: "Site",
|
|
dependencies: [
|
|
.product(name: "Saga", package: "Saga"),
|
|
.product(name: "SagaParsleyMarkdownReader", package: "SagaParsleyMarkdownReader"),
|
|
.product(name: "SagaSwimRenderer", package: "SagaSwimRenderer"),
|
|
]
|
|
)
|
|
]
|
|
)
|