Skip to content

Commit fc1c6ca

Browse files
committed
update package
1 parent 0e59a54 commit fc1c6ca

3 files changed

Lines changed: 24 additions & 3 deletions

File tree

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
1-
import PackageDescription
1+
// swift-tools-version: 5.8
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
23

4+
import PackageDescription
35

46
let package = Package(
57
name: "SidebarOverlay",
6-
dependencies : [],
7-
exclude: ["Tests"]
8+
products: [
9+
// Products define the executables and libraries a package produces, making them visible to other packages.
10+
.library(
11+
name: "SidebarOverlay",
12+
targets: ["SidebarOverlay"]),
13+
],
14+
targets: [
15+
// Targets are the basic building blocks of a package, defining a module or a test suite.
16+
// Targets can depend on other targets in this package and products from dependencies.
17+
.target(
18+
name: "SidebarOverlay"),
19+
]
820
)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// The Swift Programming Language
2+
// https://docs.swift.org/swift-book

0 commit comments

Comments
 (0)