Added Package.swift to root

This commit is contained in:
Muhand Jumah 2023-04-27 02:12:35 -04:00
parent 1c3f4bd74e
commit 669d26b07d
1 changed files with 34 additions and 0 deletions

34
Package.swift Normal file
View File

@ -0,0 +1,34 @@
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FutureFlow",
platforms: [
.iOS(.v14),
.macOS(.v11),
.tvOS(.v14),
.watchOS(.v7)
],
products: [
.library(
name: "FutureFlow",
targets: ["FutureFlow"]
),
],
targets: [
.target(
name: "FutureFlow",
dependencies: [],
path: "FutureFlow/Sources"
),
.testTarget(
name: "FutureFlowTests",
dependencies: ["FutureFlow"],
path: "FutureFlow/Tests/FutureFlowTests"
),
],
swiftLanguageVersions: [.v5]
)