Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Swift 5 deprecated PackageDescription API v3. #146

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "SwiftWebSocket"
name: "SwiftWebSocket",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "SwiftWebSocket",
targets: ["SwiftWebSocket"]),
],
targets: [
.target(
name: "SwiftWebSocket",
path: "Source"),
.testTarget(
name: "Test",
dependencies: ["SwiftWebSocket"],
path: "Test"),
]
)