FountainEditorKit.git · Package.swift
FountainEditorKit.git / Package.swift
revision 5b289641fc57ec5e8e8aa8dec3d6b32f49b98a75 · complete file
// swift-tools-version: 6.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FountainEditorKit",
platforms: [
.macOS(.v14)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "FountainEditorKit",
targets: ["FountainEditorKit"]
),
],
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.
.target(
name: "FountainEditorKit"
),
.testTarget(
name: "FountainEditorKitTests",
dependencies: ["FountainEditorKit"]
),
]
)