FountainEditorKit.git · Package.swift
FountainEditorKit.git / Package.swift
revision 02bb5ddf56beec015d5c3fe77253441c03b5e3a8 · 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"]
),
]
)