Skip to content
This repository was archived by the owner on Apr 11, 2021. It is now read-only.
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ ScrollableSegmentedControl.xcodeproj/project.xcworkspace/xcuserdata
ScrollableSegmentedControl.xcodeproj/xcuserdata
Demo/ScrollableSegmentedControlDemo/ScrollableSegmentedControlDemo.xcodeproj/project.xcworkspace/xcuserdata
Demo/ScrollableSegmentedControlDemo/ScrollableSegmentedControlDemo.xcodeproj/xcuserdata
.swiftpm
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "ScrollableSegmentedControl",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "ScrollableSegmentedControl",
targets: ["ScrollableSegmentedControl"]),
],
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: "ScrollableSegmentedControl",
dependencies: []),
.testTarget(
name: "ScrollableSegmentedControlTests",
dependencies: ["ScrollableSegmentedControl"]),
]
)
14 changes: 0 additions & 14 deletions ScrollableSegmentedControl.podspec

This file was deleted.

Loading