Skip to content

Commit

Permalink
Fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed May 25, 2021
1 parent da65f8c commit a2fdada
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// swift-tools-version:5.3
// swift-tools-version:5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "FileStreamer",
name: "swift-filestreamer",
platforms: [
.macOS(.v10_12),
.iOS(.v10),
Expand Down
36 changes: 36 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "swift-filestreamer",
platforms: [
.macOS(.v10_12),
.iOS(.v10),
.tvOS(.v10),
.watchOS(.v3),
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "FileStreamer",
targets: ["FileStreamer"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/apple/swift-system.git", .upToNextMinor(from: "0.0.2")),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "FileStreamer",
dependencies: [
.product(name: "SystemPackage", package: "swift-system"),
]),
.testTarget(
name: "FileStreamerTests",
dependencies: ["FileStreamer"]),
]
)

0 comments on commit a2fdada

Please sign in to comment.