Fountain Coach Gitowner-controlled · read only

FountainGUIKit.git · Package.swift

FountainGUIKit.git / Package.swift

revision 56597f514d0cd86acf3da1d3fac4bbff038a71c0 · 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: "FountainGUIKit",
    products: [
        // Products define the executables and libraries a package produces, making them visible to other packages.
        .library(
            name: "FountainGUIKit",
            targets: ["FountainGUIKit"]),
    ],
    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: "FountainGUIKit"),
        .testTarget(
            name: "FountainGUIKitTests",
            dependencies: ["FountainGUIKit"]
        ),
    ]
)