Skip to content

Commit 33f8faa

Browse files
committed
Create Swift Package manifest
1 parent 664eba1 commit 33f8faa

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

Example/TactileSlider.xcworkspace/contents.xcworkspacedata

Lines changed: 3 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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// swift-tools-version:5.2
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "TactileSlider",
8+
platforms: [
9+
.iOS(.v8),
10+
],
11+
products: [
12+
// Products define the executables and libraries produced by a package, and make them visible to other packages.
13+
.library(
14+
name: "TactileSlider",
15+
targets: ["TactileSlider"]),
16+
],
17+
dependencies: [
18+
// Dependencies declare other packages that this package depends on.
19+
// .package(url: /* package url */, from: "1.0.0"),
20+
],
21+
targets: [
22+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
23+
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
24+
.target(
25+
name: "TactileSlider",
26+
dependencies: [],
27+
path: "TactileSlider/Classes"),
28+
],
29+
swiftLanguageVersions: [
30+
.v5
31+
]
32+
)

0 commit comments

Comments
 (0)