This repository has been archived on 2025-02-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-mhoush.com/Package.swift
2025-02-19 17:01:08 -05:00

27 lines
986 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: "Mhoush",
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: "Mhoush",
dependencies: [
.product(name: "Saga", package: "Saga"),
.product(name: "SagaParsleyMarkdownReader", package: "SagaParsleyMarkdownReader"),
.product(name: "SagaSwimRenderer", package: "SagaSwimRenderer")
]
)
]
)